Allocate number to Agent
API Endpoint
POST https://kpi.knowlarity.com/Basic/v1/account/agent
Required Parameters
Parameters | Description |
---|---|
first_name | First Name of Agent |
last_name | Last Name of Agent |
phone | Mobile Number of Agent |
Email ID of Agent | |
country_code | country_code of agent |
Sample Request
curl -X POST \
https://kpi.knowlarity.com/Basic/v1/account/agent \
-H 'authorization: <authorization-key>' \
-H 'x-api-key: <x-api-key>'
-d '{
"first_name": "sakshi",
"last_name": "gupta",
"phone": "89826XXXXX",
"email": "[email protected]",
"country_code": "+91"
}'
Updated over 1 year ago