This function will return the information for the specified operator record. INPUTS ==> OPERATOR ID. RETURN ==> operator information (ACCESSOR ID, EMPLOYEE ID, FIRST NAME, ...)
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Operator ID |
integer |
Required |
None.
GetOperatorResponse
GetOperatorResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Header | ResponseHeader |
None. |
|
| Body | GetOperatorResponseBody |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| Message |
Message |
string |
None. |
| StatusCode |
Status code |
ResponseStatus |
None. |
| Status |
Status |
string |
None. |
| ErrorId |
Error id |
string |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| Operator |
Entity value for the operator (database value) |
OperatorViewModel |
None. |
{
"Header": {
"Message": "sample string 1",
"StatusCode": 0,
"Status": "sample string 2",
"ErrorId": "sample string 3"
},
"Body": {
"Operator": {
"AccessorId": 1,
"AccessorType": "sample string 2",
"Password": "sample string 3",
"EmployeeID": "sample string 4",
"FirstName": "sample string 5",
"MiddleName": "sample string 6",
"LastName": "sample string 7",
"Login": "sample string 8",
"TouchKeyID": "sample string 9",
"PriorityLevel": 10,
"LocationId": "sample string 11"
}
}
}
<GetOperatorResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<Body>
<Operator xmlns:d3p1="http://schemas.datacontract.org/2004/07/SaG.API.Models">
<d3p1:AccessorId>1</d3p1:AccessorId>
<d3p1:AccessorType>sample string 2</d3p1:AccessorType>
<d3p1:EmployeeID>sample string 4</d3p1:EmployeeID>
<d3p1:FirstName>sample string 5</d3p1:FirstName>
<d3p1:LastName>sample string 7</d3p1:LastName>
<d3p1:LocationId>sample string 11</d3p1:LocationId>
<d3p1:Login>sample string 8</d3p1:Login>
<d3p1:MiddleName>sample string 6</d3p1:MiddleName>
<d3p1:Password>sample string 3</d3p1:Password>
<d3p1:PriorityLevel>10</d3p1:PriorityLevel>
<d3p1:TouchKeyID>sample string 9</d3p1:TouchKeyID>
</Operator>
</Body>
<Header>
<ErrorId>sample string 3</ErrorId>
<Message>sample string 1</Message>
<Status>sample string 2</Status>
<StatusCode>Ok</StatusCode>
</Header>
</GetOperatorResponse>