POST api/Medical/GetDoctorInvitation
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": "2855a373-b057-43fb-9822-f97197bb348b",
"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>2855a373-b057-43fb-9822-f97197bb348b</PatientID> <WebApiVersion>2</WebApiVersion> </RequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetDoctorInvitationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| DoctorInvitation | Collection of DoctorInvitation |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"DoctorInvitation": [
{
"InvitationID": "98cf9e2a-e173-4f5c-905c-ed0426493ebb",
"DoctorID": "8e0ce67c-5963-45c3-89aa-802b30396af4",
"PatientPhone": "sample string 3"
},
{
"InvitationID": "98cf9e2a-e173-4f5c-905c-ed0426493ebb",
"DoctorID": "8e0ce67c-5963-45c3-89aa-802b30396af4",
"PatientPhone": "sample string 3"
}
],
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<GetDoctorInvitationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<DoctorInvitation>
<DoctorInvitation>
<DoctorID>8e0ce67c-5963-45c3-89aa-802b30396af4</DoctorID>
<InvitationID>98cf9e2a-e173-4f5c-905c-ed0426493ebb</InvitationID>
<PatientPhone>sample string 3</PatientPhone>
</DoctorInvitation>
<DoctorInvitation>
<DoctorID>8e0ce67c-5963-45c3-89aa-802b30396af4</DoctorID>
<InvitationID>98cf9e2a-e173-4f5c-905c-ed0426493ebb</InvitationID>
<PatientPhone>sample string 3</PatientPhone>
</DoctorInvitation>
</DoctorInvitation>
</GetDoctorInvitationResponse>