GET api/account/worker
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Worker| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UniqueID | globally unique identifier |
None. |
|
| FirstName | string |
Required |
|
| LastName | string |
None. |
|
| Name | string |
None. |
|
| CreatedDate | date |
None. |
|
| string |
None. |
||
| Active | boolean |
Required |
|
| UserID | globally unique identifier |
None. |
|
| Username | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"UniqueID": "57d2e9f2-f86c-4198-8fbf-8aa0908d27a6",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"Name": "sample string 3 sample string 4",
"CreatedDate": "2025-12-14T04:03:29.3372308+00:00",
"Email": "sample string 6",
"Active": true,
"UserID": "db312826-3578-4a5a-b476-879abca7a020",
"Username": "sample string 9"
}
application/xml, text/xml
Sample:
<Worker xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cag.Data.User"> <Active>true</Active> <CreatedDate>2025-12-14T04:03:29.3372308+00:00</CreatedDate> <Email>sample string 6</Email> <FirstName>sample string 3</FirstName> <ID>1</ID> <LastName>sample string 4</LastName> <UniqueID>57d2e9f2-f86c-4198-8fbf-8aa0908d27a6</UniqueID> <UserID>db312826-3578-4a5a-b476-879abca7a020</UserID> <Username>sample string 9</Username> </Worker>