Delete Cash Flow
PUT/ws/rest/service/v1/cashflow/{project_number}
Note: The owner permissions cannot be deleted via REST or Web Services.
Purpose:
Delete detail/rollup cash flows
Input:
All parameters should be URL encoded.
Path Parameter
project_number (Optional): Specify the project/shell/program number to delete the cash flows of project; otherwise, to delete the company rollup curves
Both input & output in JSON format in the body
Output:
JSON object containing 'status', 'data', 'message'
Status codes are:
1> 200 , for success
2> 3000, for Partial success.
Delete Cash Flow Input JSON
{
"data": {
"names": ["Cash Flow 1","Cash Flow 2"]
}
}
Delete Cash Flow Ouput JSON
{
"data": [],
"message": [
{
"status": 200,
"message": "success",
"name": "Cash Flow 1"
},
{
"status": 1305,
"message": "Cash Flow do not exist",
"name": "Cash Flow 2"
}
],
"status": 3000
}
Last Published Friday, December 13, 2024