GET api/v1/Agents/{AgentID}/Customers/{CustomerId}/Users/{UserId}
Find User By UserID
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| AgentID |
Define this parameter in the request URI. |
|
| CustomerId |
Define this parameter in the request URI. |
|
| UserId |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"UserID": 1,
"CustomerID": 2,
"AgentID": 3,
"FirstName": "sample string 4",
"LastName": "sample string 5",
"Email": "sample string 6",
"Password": "sample string 7",
"ContactNumber": "sample string 8",
"IsActivated": true,
"Permissions": [
"sample string 1",
"sample string 2",
"sample string 3"
]
}
application/xml, text/xml
Sample:
<CustomersUserDTO> <UserID>1</UserID> <CustomerID>2</CustomerID> <AgentID>3</AgentID> <FirstName>sample string 4</FirstName> <LastName>sample string 5</LastName> <Email>sample string 6</Email> <Password>sample string 7</Password> <ContactNumber>sample string 8</ContactNumber> <IsActivated>true</IsActivated> <Permissions>sample string 1</Permissions> <Permissions>sample string 2</Permissions> <Permissions>sample string 3</Permissions> </CustomersUserDTO>