cURL
curl --request POST \ --url https://sandbox-api.kotanipay.io/api/v3/integrator \ --header 'Content-Type: application/json' \ --data ' { "organization": "A&B Company", "product_name": "MY APP NAME", "first_name": "John", "last_name": "Doe", "email": "[email protected]", "phone": "+xxx xxx xxx xxx", "country_code": "US" } '
{ "success": true, "message": "The record has been successfully created.", "data": { "organization": "A&B Company", "first_name": "John", "last_name": "Doe", "email": "[email protected]", "phone": "+xxx xxx xxx xxx", "id": "xxxxxxxxxxxxxxxxxxxxxxxx" } }
This endpoint will help you create an integrator
organization
"A&B Company"
product name
"MY APP NAME"
first_name
"John"
last_name
"Doe"
email
"[email protected]"
phone
"+xxx xxx xxx xxx"
country_code
"US"
true
"The record has been successfully created."
Show child attributes