Error
Ozow reports an error
On this page3 sections
Ozow sends
application/jsonSent when a step fails. canContinue says whether the transaction survives it.
When canContinue is true, send the last message again with the problem corrected. When it is false, the transaction is over.
Authentication
bearerTokenAuthorization header`Authorization: Bearer <access_token>`, using an access token from `POST /token` on the One API. Authentication or authorisation failure closes the connection with `403 Forbidden`.
Payload
titlestring requiredThe title of the error response.
detailstring requiredThe details of the error response.
canContinueboolean requiredWhether processing on the particular transaction can continue. When true, send the last message again with the problem corrected.
Examples
{
"title": "Invalid credentials",
"detail": "The username or password was not accepted by the bank.",
"canContinue": true
}