Get Manager Info by ID
The Get Manager Info by ID method returns manager's details by given manager ID.
GET /api/vendor/v1/managers/{id}.json?api_token={api_token}
Arguments
Name | Parameter Type | Data type | Required/ | Description |
---|---|---|---|---|
id | path | integer | Required | A manager ID. |
api_token | query | string | Required | API token of the manager who perform the operation (see API Token Authentication). |
Response model
Name | Data type | Description |
---|---|---|
id | integer | A manager ID. |
status | string | One of the following manager's status:
|
name | string | A manager name. |
created_at | data | A date and time of the manager's creation. |
updated_at | data | A date and time of the manager's changes last time. |
Request example
GET http://billing.activeplatform.com:80/api/vendor/v1/managers/2000131.json?api_token=654321
Response example
{
"id": 2000131,
"status": "active",
"name": "John Doe",
"created_at": "2015-03-09T12:11:58.963+03:00",
"updated_at": "2015-08-17T14:39:54.594+03:00"
}