Ozow Hub
GEThttps://one.ozow.com/v1/paymentsProduction

List payments between specific dates.

Authentication

  • OAuth 2.0
    scopespayments

Query parameters

  • limit integer

    The maximum number of items to return.

    min1max50default50
  • offset integer

    The number of items to discard in this paging operation.

    min length0min0default0
  • fromDate string required

    The date from which to filter, inclusive. Whole days only, so any time sent with it is discarded.

    example2026-01-15
  • toDate string required

    The date to filter up to, inclusive. Whole days only, so any time sent with it is discarded.

    example2026-01-31
  • siteCode string

    The merchant site codeSite code The unique code for a site registered under a merchant. A site is a place to transact: a website, or a branch of a store. A merchant can have several, and each transaction names the one it belongs to, so sending the wrong code files the payment against the wrong place..

Header parameters

  • X-Correlation-ID string

    Optional correlation id for the request, if not supplied a new one will be generated and passed onto all underlying requests and returned as a header.

Responses

200 OK
  • X-Correlation-ID header

    The correlation id for the request that was processed.

  • links PaginationLinks required

    The links used in pagination.

    Fields of PaginationLinks
    • self string uri

      The current page of data.

    • first string uri

      The first page of data.

    • last string uri nullable

      The last page of data. Null when the whole collection fits on one page.

    • prev string uri nullable

      The previous page of data. Null on the first page.

    • next string uri nullable

      The next page of data. Null on the last page.

    Open PaginationLinks on its own page
  • results array of PaymentResponse required
    Fields of PaymentResponse
    • links PaymentLinks required

      The relevant links to the this payment.

      Fields of PaymentLinks
      • self string uri

        The unique URI for this resource.

      • cancel string uri

        The cancel URI for this payment. This is a POST operation.

      • transactions string uri

        The transactions associated with this payment request.

      Open PaymentLinks on its own page
    • id string uuid required

      The identifier for the payment request.

    • status PaymentStatus required

      The status of the payment.

      values"Created""Expired"
    • reason string

      The payment status reason.

    • redirectUrl string uri

      The url to redirectRedirect Sending the payer to the Ozow payment page to complete the payment, and returning them to your site afterwards. The alternative is embedding the checkout in your own page, where the payer never leaves it. a consumer to. A redirect url will be provided should a payment require further client interaction.

    Open PaymentResponse on its own page
  • Fields of PaginationMeta
    • totalPages integer required

      The total number of pages available.

    • totalItems integer required

      The total number of items available.

    Open PaginationMeta on its own page