Payment Providers

List payment providers

Retrieve all configured payment providers for the tenant. Credentials are never returned.

get/api/payment-providers

Response

List of configured providers (without credentials)

idstring required
providerNamestring required
isActiveboolean required
prioritynumber required
createdAtstring required
updatedAtstring required

Example response

[
  {
    "id": "clx1234567890",
    "providerName": "paystack",
    "isActive": true,
    "priority": 1
  }
]

Changes

Changed in 1 of the 2 revisions of this API.1

    • added the media type application/json for the response with the status 200

      response-media-type-added