GET api/clinicians/{clinicianId}/legalAgreements

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clinicianId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ListResponseOfAgreementInfoResponse
NameDescriptionTypeAdditional information
Items

Collection of AgreementInfoResponse

None.

Result

Result

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "AgreementId": 1,
      "AgreementDate": "2024-05-18T21:44:59.6950043+00:00",
      "AgreementText": "sample string 2"
    },
    {
      "AgreementId": 1,
      "AgreementDate": "2024-05-18T21:44:59.6950043+00:00",
      "AgreementText": "sample string 2"
    }
  ],
  "Result": {
    "ResultCode": "sample string 1",
    "ResultDescription": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<ListResponseOfAgreementInfoResponse8Vkccj_Sk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DoseSpot.UI.API.DataContracts._13">
  <Result>
    <ResultCode>sample string 1</ResultCode>
    <ResultDescription>sample string 2</ResultDescription>
  </Result>
  <Items>
    <AgreementInfoResponse>
      <AgreementDate>2024-05-18T21:44:59.6950043+00:00</AgreementDate>
      <AgreementId>1</AgreementId>
      <AgreementText>sample string 2</AgreementText>
    </AgreementInfoResponse>
    <AgreementInfoResponse>
      <AgreementDate>2024-05-18T21:44:59.6950043+00:00</AgreementDate>
      <AgreementId>1</AgreementId>
      <AgreementText>sample string 2</AgreementText>
    </AgreementInfoResponse>
  </Items>
</ListResponseOfAgreementInfoResponse8Vkccj_Sk>