POST api/Security/GetPartner

Request Information

URI Parameters

None.

Body Parameters

PartnerRequest
NameDescriptionTypeAdditional information
PartnerCode

string

None.

PartnerLink

string

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PartnerCode": "sample string 1",
  "PartnerLink": "sample string 2",
  "PatientID": "c6f0bce7-fe47-4516-b00c-a93f2ed4ea1d",
  "WebApiVersion": 4,
  "Language": "sample string 5"
}

application/xml, text/xml

Sample:
<PartnerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 5</Language>
  <PatientID>c6f0bce7-fe47-4516-b00c-a93f2ed4ea1d</PatientID>
  <WebApiVersion>4</WebApiVersion>
  <PartnerCode>sample string 1</PartnerCode>
  <PartnerLink>sample string 2</PartnerLink>
</PartnerRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PartnerResponse
NameDescriptionTypeAdditional information
Partner

Partner

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Partner": {
    "PartnerID": "31e76d5b-b79c-4cb4-b848-c26095fecd24",
    "PartnerName": "sample string 2"
  },
  "WebApiVersion": 1
}

application/xml, text/xml

Sample:
<PartnerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <WebApiVersion>1</WebApiVersion>
  <Partner>
    <PartnerID>31e76d5b-b79c-4cb4-b848-c26095fecd24</PartnerID>
    <PartnerName>sample string 2</PartnerName>
  </Partner>
</PartnerResponse>