Ozow Hub
On this page3 sections
Ozow sends application/json

Sent once all the payer input has been processed. It carries the final status.

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

  • transactionId string uuid required

    The transaction id of the completed transaction.

  • status TransactionStatus required

    The transaction's status. Error covers every unsuccessful outcome, and reason carries the detail.

    values"Incomplete""Successful""Error""Pending""Refunded"

Examples

The transaction completed
{
  "transactionId": "5ecaafc2-354f-47d9-822d-d0bd8b77eab3",
  "status": "Successful"
}