Skip to main content

BAD_REQUEST

Session API

Partial authorization not allowed for authorizeCard = false

// POST /sessions request
{
"payment": {
"authorizeCard": false,
"partialAuthorization": true
}
}

// error response
{
"title": "INVALID_REQUEST",
"status": 400,
"detail": "Partial authorization not allowed for authorizeCard = false",
"errorDetails": null
}

Payment API

Partial authorization not allowed for authorizeCard = false

// POST /payments request
{
"authorizeCard": false,
"partialAuthorization": true
}

// error response
{
"title": "INVALID_REQUEST",
"status": 400,
"detail": "Partial authorization not allowed for authorizeCard = false",
"errorDetails": null
}