SparkTG
Loading your experience...
Please wait while we prepare everything for you
Please wait while we prepare everything for you
Get User Profile & Account Information
Basic Authentication
POST
9 Parameters
JSON Format
/userid(Integer)Unique identifier of the user
name(String)Display name of the user (e.g., Agent name)
password(String)User’s password in hashed format (not plain text)
email(String)Registered email of the user (may be empty)
number(String)Registered phone number of the user (may be empty)
active(Boolean)Indicates if the user account is active
Try this API with a simple cURL command
curl -i -u "username:password" "https://telephonycloud.co.in/api/v1/user"Sample response from this API
{
"id": 1,
"name": "AgentN",
"password": "21232f297a57a5a743894a0e4a801fc3",
"email": "",
"number": "",
"active": true,
"username": "1",
"verified": true,
"login_id": "test"
}...