POST api/Security/GetOperatorInfo
Request Information
URI Parameters
None.
Body Parameters
RequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientID": "c0ea7ec4-090d-47b4-8320-0cc0a12b32de",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<RequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 3</Language> <PatientID>c0ea7ec4-090d-47b4-8320-0cc0a12b32de</PatientID> <WebApiVersion>2</WebApiVersion> </RequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OperatorInfoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Operator | Operator |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Operator": {
"OperatorID": "10afd9d0-f13c-4e2c-be8f-c34d724cb795",
"OperatorTypeID": "3518c617-f81b-4474-b940-096af15a591e",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"Email": "sample string 5",
"Password": "sample string 6",
"IsAdmin": true,
"Photo": "sample string 8"
},
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<OperatorInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<Operator>
<Email>sample string 5</Email>
<FirstName>sample string 3</FirstName>
<IsAdmin>true</IsAdmin>
<LastName>sample string 4</LastName>
<OperatorID>10afd9d0-f13c-4e2c-be8f-c34d724cb795</OperatorID>
<OperatorTypeID>3518c617-f81b-4474-b940-096af15a591e</OperatorTypeID>
<Password>sample string 6</Password>
<Photo>sample string 8</Photo>
</Operator>
</OperatorInfoResponse>