Skip to main content
GET
/
api
/
v3
/
integrator
Get an Integrator Details.
curl --request GET \
  --url https://preview.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": "ab@gmail.com",
    "phone": "+xxx xxx xxx xxx",
    "id": "xxxxxxxxxxxxxxxxxxxxxxxx",
    "webhook_url": "https://example.com/kotani/webhooks",
    "webhook_events": [
      "transaction.deposit.status.updated",
      "payment.confirmed"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://manual.kotanipay.com/llms.txt

Use this file to discover all available pages before exploring further.

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