GET api/clinicians/{clinicianId}/legalAgreements
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clinicianId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListResponseOfAgreementInfoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of AgreementInfoResponse |
None. |
|
| Result | Result |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"AgreementId": 1,
"AgreementDate": "2025-12-13T16:11:18.4702708+00:00",
"AgreementText": "sample string 2"
},
{
"AgreementId": 1,
"AgreementDate": "2025-12-13T16:11:18.4702708+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>2025-12-13T16:11:18.4702708+00:00</AgreementDate>
<AgreementId>1</AgreementId>
<AgreementText>sample string 2</AgreementText>
</AgreementInfoResponse>
<AgreementInfoResponse>
<AgreementDate>2025-12-13T16:11:18.4702708+00:00</AgreementDate>
<AgreementId>1</AgreementId>
<AgreementText>sample string 2</AgreementText>
</AgreementInfoResponse>
</Items>
</ListResponseOfAgreementInfoResponse8Vkccj_Sk>