GET
/
core
/
connectors
/
get
cURL
curl -X GET "https://api.onekhusa.com/sandbox/v1/core/connectors/get?connectorId=666473" \
  --header "Authorization: Bearer your-jwt-token" \
  --header "accept: application/json" \
  --header "X-Organisation-Id: FYH0NTVW0DXK" \
  --header "X-Merchant-Account-Number: 35253486" \
  --header "Accept-Language: en"
{
  "connectorId": 666473,
  "connectorName": "FDH Bank Limited",
  "connectorCode": "FDH",
  "connectorDescription": "The bank supports the processing of disbursement and collection transactions",
  "channelCode": "B",
  "logoBase64": "iVBORw0KGgoAAAANSUhEUgAAAIcA....",
  "logoFormat": "image/png",
  "isDisbursementAllowed": true,
  "isCollectionAllowed": true,
  "isActive": true
}

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

Query Parameters

connectorId
integer
required

The unique identifier of the connector

Response

Success Response (200)

connectorId
integer

Unique 6-digit identifier for the connector

Example:

666473

connectorName
string

Display name of the connector

Example:

"FDH Bank Limited"

connectorCode
string

Unique code identifier for the connector

Example:

"FDH"

connectorDescription
string

Detailed description of the connector

Example:

"The bank supports the processing of disbursement and collection transactions"

channelCode
string

Code of the payment channel

Example:

"B"

logoBase64
string

Base64 encoded logo image

Example:

"iVBORw0KGgoAAAANSUh.."

logoFormat
string

Image format (PNG, JPG, etc.)

Example:

"image/png"

isDisbursementAllowed
boolean

Whether the connector supports payment disbursement

Example:

true

isCollectionAllowed
boolean

Whether the connector supports payment collection

Example:

true

isActive
boolean

Whether the connector is currently active to processing transactions or not

Example:

true