Skip to main content
GET
/
api
/
v3
/
integrator
Get an Integrator Details.
curl --request GET \
  --url https://sandbox-api.kotanipay.com/api/v3/integrator \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "The record has been successfully retrieved.",
  "data": {
    "organization": "A&B Company",
    "first_name": "John",
    "last_name": "Doe",
    "email": "[email protected]",
    "phone": "+xxx xxx xxx xxx",
    "id": "xxxxxxxxxxxxxxxxxxxxxxxx",
    "webhook_url": "https://example.com/kotani/webhooks",
    "webhook_events": [
      "transaction.deposit.status.updated",
      "payment.confirmed"
    ]
  }
}
Retrieve the details of the authenticated integrator account, including business information and account status.

Authorizations

Authorization
string
header
required

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

Response

success
boolean
Example:

true

message
string
Example:

"The record has been successfully retrieved."

data
object