GET api/ConnectedCar/UserAuthorizer/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
UserAuthorizerDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| user_authorizer_id | integer |
None. |
|
| user_id | integer |
None. |
|
| user_name | string |
None. |
|
| user_surname | string |
None. |
|
| client_id | integer |
None. |
|
| user_authorizer_active | integer |
None. |
|
| user_authorizer_created_at | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"user_authorizer_id": 1,
"user_id": 1,
"user_name": "sample string 2",
"user_surname": "sample string 3",
"client_id": 1,
"user_authorizer_active": 1,
"user_authorizer_created_at": "QEA="
}
application/xml, text/xml
Sample:
<UserAuthorizerDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/connectedcarfleet_backend.Models"> <client_id>1</client_id> <user_authorizer_active>1</user_authorizer_active> <user_authorizer_created_at>QEA=</user_authorizer_created_at> <user_authorizer_id>1</user_authorizer_id> <user_id>1</user_id> <user_name>sample string 2</user_name> <user_surname>sample string 3</user_surname> </UserAuthorizerDTO>