Update Payment Order Value
Request
ENDPOINT
/account/ACCOUNT_KEY/outgoing_recurrence/OUTGOING_RECURRENCE_KEY/payment_order/PAYMENT_ORDER_KEYMETHOD
PATCHPath Params
| Field | Type | Description | Characters |
|---|---|---|---|
ACCOUNT_KEY | uuidv4 | Unique account identification key. | 36 |
OUTGOING_RECURRENCE_KEY | uuidv4 | Unique key of the recurrence to be updated. | 36 |
PAYMENT_ORDER_KEY | uuidv4 | Unique key of the payment order to be updated. | 36 |
Request Body
Update Payment Order
{
"transaction_amount": 100
}
Request Body Params
| Field | Type | Description | Characters |
|---|---|---|---|
transaction_amount | floating | Transaction amount to be updated. | - |
Response
STATUS
200Response Body
{}
STATUS
4XX Response Error
{
"title": "titulo",
"description": "description in English",
"translation": "descrição em português",
"code": "codigo"
}
| HTTP Code | QI Codecode | Titletitle | Description (eng)description | Description (ptbr)translation |
|---|---|---|---|---|
| 400 | QIT000002 | Bad Request | Invalid request schema. | Erro no esquema da requisição. |
| 404 | APX000404 | Payment Order Not Found | Payment Order {payment_order_key} not found. | Lote de conciliação {payment_order_key} não encontrado. |