POST api/patients/{patientId}/transfer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| patientId | integer |
Required |
Body Parameters
ChangePatientClinicRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ClinicIdToRemove | integer |
Required |
|
| ClinicIdToAdd | integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"ClinicIdToRemove": 2,
"ClinicIdToAdd": 3
}
application/xml, text/xml
Sample:
<ChangePatientClinicRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DoseSpot.UI.API.DataContracts._13"> <ClinicIdToAdd>3</ClinicIdToAdd> <ClinicIdToRemove>2</ClinicIdToRemove> </ChangePatientClinicRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ChangePatientClinicResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Result |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": {
"ResultCode": "sample string 1",
"ResultDescription": "sample string 2"
}
}
application/xml, text/xml
Sample:
<ChangePatientClinicResponse 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>
</ChangePatientClinicResponse>