Delete Fund

DELETE /ws/rest/service/v1/fund/{project_number}

Purpose

Deletes Fund codes

Request Format

All parameters should be URL encoded.

Path Parameter

project_number: Specify the project/shell number in which fund ids exists. If no value is specified, the fund ids will be deleted from company.

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 Request

{

"data":{

"codes": ["Fund9","Fund5","Fund6"]

}

}

Sample Partial Success Response

{

"data": {

},

"message": [

{ code: "Fund5","status": "1206","message":"Fund Code is referenced in lineitems"},

{ code: ""Fund6"","status": "200","message":"success"} ,

{ code: "Fund9","status": "1201","message":"Fund Code do not exist"}

],

"status": 3000

}