Get Fund Assignment Order
GET /ws/rest/service/v1/fund/order/{project_number}
Purpose
Get Fund Order
Request Format
All parameters should be URL encoded.
Path Parameter
project_number: Specify the project/shell number of the funding sheet.
Response Format
A JSON object is returned in the following format.
{
"data": [],
"message": [],
"status": <REST status code value>
}
A successful response displays a status code 200.
A failed response displays a message with a status code.
| Status | Message | Condition |
|---|---|---|
| 200 | success | If all the data is retrieved in the response |
| 500 | exception message | If there is any exception when running this service |
| 1240 | Request is valid for Shell or Project. | |
| 1207 | Funding sheet do not exist. | If shell does not have funding sheet |
Sample Success Response
{
"data": [{"code_order": ["f1001", "f1002", "f1003"]}],
"message": ["success"],
"status": 200
}