post
https://sandboxapi.upayments.com/api/v1/authorize//authorize-incremental
Increase the held authorization amount on an active transaction without requiring the customer to perform a new checkout session
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Request Model
The request is a POST request with the following parameters:
| Input Parameter | Type | Length | Description |
|---|---|---|---|
| order | Object (Order Model) | - | Order details including amount and currency for authorization. |
{
"order": {
"id": "202210101255255144669",
"reference": "11111991",
"description": "Purchase order received for Logitech K380 Keyboard",
"currency": "KWD",
"amount": 5
}
}Response Model
| Input Parameter | Type | Max Length | Description |
|---|---|---|---|
| status | Boolean | 100 | true if the request was successfully processed (not necessarily authorized, but a link was generated). |
| message | String | 100 | A descriptive message regarding the operation. |
| data | Object | - | Object contains the Authorize incremental status, total amount, and redirect_url |
{
"status": true,
"message": "Data received successfully",
"data": {
"payMit": {
"result": "SUCCESS",
"order": {
"status": "AUTHORIZED"
},
"totalAmount": 15
},
"updateSessionTokenMitData": null,
"transactionData": {
"redirect_url": "https://upayments.com/en/?payment_id=7901427333626067804806&result=AUTHORIZED&post_date=&tran_id=&ref=01a0ccd23b296daec513c5b83626c6de&track_id=01a0ccd1f4bfa5f7338b710cebc95c00&auth=&order_id=01a0ccd23b2692951a5644e82a7910ba&requested_order_id=202210101255255144669&refund_order_id=01a0ccd23b2692951a5644e82a7910ba&payment_type=card&invoice_id=6120134&transaction_date=2026-09-23 08:09:52&receipt_id=01a0ccd23b2692951a5644e82a7910ba"
}
}
} 200