GET api/SecureClient/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SecureClientData| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | string |
None. |
|
| ClientID | integer |
None. |
|
| RoleID | integer |
None. |
|
| AddedBy | string |
None. |
|
| AddedDate | date |
None. |
|
| UpdatedBy | string |
None. |
|
| UpdatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"UserID": "sample string 2",
"ClientID": 3,
"RoleID": 4,
"AddedBy": "sample string 5",
"AddedDate": "2026-02-10T16:09:51.8147544-08:00",
"UpdatedBy": "sample string 6",
"UpdatedDate": "2026-02-10T16:09:51.8147544-08:00"
}
text/xml
Sample:
<SecureClientData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL"> <AddedBy>sample string 5</AddedBy> <AddedDate>2026-02-10T16:09:51.8147544-08:00</AddedDate> <ClientID>3</ClientID> <ID>1</ID> <RoleID>4</RoleID> <UpdatedBy>sample string 6</UpdatedBy> <UpdatedDate>2026-02-10T16:09:51.8147544-08:00</UpdatedDate> <UserID>sample string 2</UserID> </SecureClientData>