6DOT50 APIs
  • Redemptions API
    • Overview
    • Process Flow
    • Requests
    • Response Models
    • Payment Codes
    • Authentication
      • POST /authentication/getToken
  • Accounts
    • GET /accounts
    • GET /accounts/{id}/transactions
  • Initiate Payment
    • POST /payments
  • User Payment Pages
    • Authentication
    • Payment Confirmation
    • Payment Status
  • Payment Status
    • GET /payments/{id}
  • List Payments
    • GET /payments
  • Support
  • PAY API
    • Overview
    • API Keys
    • Endpoints
    • Process Flow
    • Requests
    • Response Models
    • Authentication
      • POST /authentication/getToken
    • Accounts
      • GET /accounts
    • Batches
      • POST /batches
      • GET /batches
      • GET /batches/{id}
      • PUT /batches/{id}
      • GET /batches/statusCodes
      • POST /batches/{id}/payments
      • GET /batches/{id}/payments
      • POST /batches/{id}/submit
      • POST /batches/{id}/cancel
    • Members
      • GET /members/{msisdn}/exists
    • Payments
      • GET /payments/{id}
      • DELETE /payments/{id}
      • GET /payments/statusCodes
  • Support
Powered by GitBook
On this page
  1. PAY API

Requests

PreviousProcess FlowNextResponse Models

Last updated 2 years ago

All requests to be made using application/json media type.

In addition, all operations (except for Authentication) requires a Header attribute to be supplied:

Header Name
Value
Description

Authorization

Bearer [token]

Where [token] is the token returned from the authentication/getToken operation. See for more information.

A 401 Unauthorized HTTP response will be returned if a malformed authorisation header is supplied (empty, invalid, or expired).

Date and Time

Note that all date and times supplied are in UTC (Coordinated Universal Time).

Authentication