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": "71f3d6f3-b1bd-4e48-9814-0ff1f618ad57",
"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>71f3d6f3-b1bd-4e48-9814-0ff1f618ad57</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": "f0c2a155-d8c0-4ed4-b832-1cbffe199dd4",
"OperatorTypeID": "67078bb2-c6c9-40cc-969e-2459a306ae8a",
"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>f0c2a155-d8c0-4ed4-b832-1cbffe199dd4</OperatorID>
<OperatorTypeID>67078bb2-c6c9-40cc-969e-2459a306ae8a</OperatorTypeID>
<Password>sample string 6</Password>
<Photo>sample string 8</Photo>
</Operator>
</OperatorInfoResponse>