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": "3b4f3616-cc52-4942-ad9b-d1eb22cd202c",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"Name": "sample string 3 sample string 4",
"CreatedDate": "2026-02-04T01:33:12.6931218+00:00",
"Email": "sample string 6",
"Active": true,
"UserID": "974f00ae-f1eb-40c5-9c64-67476b39088c",
"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>2026-02-04T01:33:12.6931218+00:00</CreatedDate> <Email>sample string 6</Email> <FirstName>sample string 3</FirstName> <ID>1</ID> <LastName>sample string 4</LastName> <UniqueID>3b4f3616-cc52-4942-ad9b-d1eb22cd202c</UniqueID> <UserID>974f00ae-f1eb-40c5-9c64-67476b39088c</UserID> <Username>sample string 9</Username> </Worker>