Update Fund
PUT /ws/rest/service/v1/fund/
Purpose
Update company fund code attributes.
Request Format
All parameters should be URL encoded.
POST body is a JSON. Data will be list of fund code attributes to be updated at company level
Note: POST call has input & output both as JSON in the body.
Update Fund
{"data":[{
"code":"MiscFund",
"category":"Grants",
"description":"Miscellaneous Fund"
}
]
}
Code, Name, ID, Status and orderid cannot be updated. If provided, they will be ignored.
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.
Sample Success Response
{
"data": [
{
"id":4,
"code":MiscFund,
"name":"MiscFund",
"category":"Grants",
"description":"MiscellaenousFund",
"status":"active"
}
],
"message":
[
{ code: "MiscFund","status": "200","message":"success"}
],
"status": 200
}
Multiple fund codes can be updated in a single request.
Related Topics
Get Fund Assignment Order for Cost Sheet
Update Fund Assignment Order for Cost Sheet
Get Fund Consumption for CBS Level SOV (Auto-Order / Auto-Ratio)
Update Fund Consumption for CBS Level SOV (Auto-Order / Auto-Ratio)
Response Error Codes (Funding REST API Details)
Last Published Wednesday, April 9, 2025