POST api/AmendmentRequests
Update the status to an amendment request.
Request Information
URI Parameters
None.
Body Parameters
AmendmentRequestPostModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AmendmentRequestId |
Gets or sets the amendment request ID. |
globally unique identifier |
None. |
| Status |
Gets or sets the status of the request. Status should be (Pending, Approved or Denied). |
string |
None. |
| DoctorComments |
Gets or sets the doctor comments. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"amendmentRequestId": "ece39418-e0f0-4bd3-8a06-555a1749dad1",
"status": "sample string 2",
"doctorComments": "sample string 3"
}
application/xml, text/xml
Sample:
<AmendmentRequestPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.AmendmentRequests"> <AmendmentRequestId>ece39418-e0f0-4bd3-8a06-555a1749dad1</AmendmentRequestId> <DoctorComments>sample string 3</DoctorComments> <Status>sample string 2</Status> </AmendmentRequestPostModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AmendmentRequestPostModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AmendmentRequestId |
Gets or sets the amendment request ID. |
globally unique identifier |
None. |
| Status |
Gets or sets the status of the request. Status should be (Pending, Approved or Denied). |
string |
None. |
| DoctorComments |
Gets or sets the doctor comments. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"amendmentRequestId": "3ab68f5b-b275-452a-9512-2f620e448190",
"status": "sample string 2",
"doctorComments": "sample string 3"
}
application/xml, text/xml
Sample:
<AmendmentRequestPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.AmendmentRequests"> <AmendmentRequestId>3ab68f5b-b275-452a-9512-2f620e448190</AmendmentRequestId> <DoctorComments>sample string 3</DoctorComments> <Status>sample string 2</Status> </AmendmentRequestPostModel>