GET
/
core
/
Connectors
/
GetSummary
cURL
curl -X GET "https://api.onekhusa.com/sandbox/v1/api/core/Connectors/GetSummary" \
  --header "Authorization: Bearer your-jwt-token"
[
  {
    "connectorName": "Airtel Money",
    "connectorId": 123456,
    "isActive": true,
    "channelCode": "M",
    "connectorCode": "EEE"
  },
  {
    "connectorName": "FDH Bank Limited",
    "connectorId": 234567,
    "isActive": true,
    "channelCode": "B",
    "connectorCode": "FDH"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <Token>, where <Token> is your access token.

Headers

X-Organisation-Id
string
required

The organization identifier

X-Merchant-Account-Number
string
required

The merchant account number

Accept-Language
string
default:en

Preferred language for the response

Response

200 - application/json

Success Response (200)

connectorName
string
required

The name of the payment connector

Example:

"Airtel Money"

connectorId
integer
required

Unique identifier for the connector

Example:

123456

isActive
boolean
required

Indicates if the connector is currently active

Example:

true

channelCode
string
required

Code identifying the payment channel

Example:

"M"

connectorCode
string
required

Unique code for the connector

Example:

"EEE"