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": "51a4131a-a4bc-458b-9de3-46658f75bf50",
"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>51a4131a-a4bc-458b-9de3-46658f75bf50</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": "37a3f34c-e21e-48d5-b13c-602f29128b1b",
"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>37a3f34c-e21e-48d5-b13c-602f29128b1b</AmendmentRequestId> <DoctorComments>sample string 3</DoctorComments> <Status>sample string 2</Status> </AmendmentRequestPostModel>