POST API/Budget/DeleteAllCustomerBudgets

Request Information

URI Parameters

None.

Body Parameters

DeleteAllCustomerBudgetsRequest
NameDescriptionTypeAdditional information
CustomerEmail

string

None.

ValidationMessage

string

None.

ErrorCode

ErrorCodes

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerEmail": "sample string 1",
  "ValidationMessage": "sample string 2",
  "ErrorCode": 101
}

application/xml, text/xml

Sample:
<DeleteAllCustomerBudgetsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Budget_WebAPI.Models">
  <CustomerEmail>sample string 1</CustomerEmail>
</DeleteAllCustomerBudgetsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorCode

ErrorCodes

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ErrorCode": 101,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Budget_WebAPI.Models">
  <ErrorCode>InvalidToken</ErrorCode>
  <Message>sample string 2</Message>
  <Success>true</Success>
</BaseResponse>