Increases or decreases the authorised amount.
Allows you to increase or decrease the authorised amount after the initial authorisation has taken place. This functionality enables tipping, improving the chances your authorisation will be valid, charging the shopper when they have already left the merchant premises, etc.
For more information, refer to Adjust Authorisation.
POST /adjustAuthorisation
curl \
-X POST https://pal-test.adyen.com/pal/servlet/Payment/v40/adjustAuthorisation \
-H "Content-Type: application/json" \
-d '{"additionalData":{},"merchantAccount":"string","modificationAmount":{"currency":"string","value":42},"originalMerchantReference":"string","originalReference":"string","reference":"string","splits":[{"account":"string","amount":{"currency":"string","value":42},"description":"string","reference":"string","type":"Commission"}],"tenderReference":"string","uniqueTerminalId":"string"}'
Request example
{
"additionalData": {},
"merchantAccount": "string",
"modificationAmount": {
"currency": "string",
"value": 42
},
"originalMerchantReference": "string",
"originalReference": "string",
"reference": "string",
"splits": [
{
"account": "string",
"amount": {
"currency": "string",
"value": 42
},
"description": "string",
"reference": "string",
"type": "Commission"
}
],
"tenderReference": "string",
"uniqueTerminalId": "string"
}
Request examples
{
"additionalData": {},
"merchantAccount": "string",
"modificationAmount": {
"currency": "string",
"value": 42
},
"originalMerchantReference": "string",
"originalReference": "string",
"reference": "string",
"splits": [
{
"account": "string",
"amount": {
"currency": "string",
"value": 42
},
"description": "string",
"reference": "string",
"type": "Commission"
}
],
"tenderReference": "string",
"uniqueTerminalId": "string"
}
Response examples (200)
{
"additionalData": {},
"pspReference": "string",
"response": "[capture-received]"
}
Response examples (200)
{
"additionalData": {},
"pspReference": "string",
"response": "[capture-received]"
}