POST api/Security/GetOperatorInfo

Request Information

URI Parameters

None.

Body Parameters

RequestBase
NameDescriptionTypeAdditional information
PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientID": "965bd394-7a53-47e3-aa18-fe3453227589",
  "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>965bd394-7a53-47e3-aa18-fe3453227589</PatientID>
  <WebApiVersion>2</WebApiVersion>
</RequestBase>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OperatorInfoResponse
NameDescriptionTypeAdditional information
Operator

Operator

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Operator": {
    "OperatorID": "d90ead5f-ba53-445c-be6d-3921aaa7fae0",
    "OperatorTypeID": "2b897f5e-b9ee-438d-86eb-79dab7c5e501",
    "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>d90ead5f-ba53-445c-be6d-3921aaa7fae0</OperatorID>
    <OperatorTypeID>2b897f5e-b9ee-438d-86eb-79dab7c5e501</OperatorTypeID>
    <Password>sample string 6</Password>
    <Photo>sample string 8</Photo>
  </Operator>
</OperatorInfoResponse>