(Quick Reference)
Service: Update
Description: This web service is used to update an existing customerCategoryDiscountLists object to the database
Method: PUT
Request content type: application/json
URL:
https://BASE_URL/api/VERSION/customerCategoryDiscountLists/{id}
Parameters:
Name | Description | Type | Required | Example values |
---|
id | id of the desired record to update | Long | Yes | 123 |
discountListId | the discount id to be assigned | Long | Yes | 777 |
customerCategoryId | the id of the customer category to assign | Long | Yes | 111 |
URL with external_id:
https://BASE_URL/api/VERSION/customerCategoryDiscountLists/reference/{customerCategoryId}/{discountListId}
Parameters:
Name | Description | Type | Required | Examples values |
---|
customerCategoryId | reference of the customer category | String | Yes | CC-002 |
discountListId | reference of the discount list | String | Yes | DL-001 |
Success Output
Success case: response.status=200
{
"id": 4,
"discountListReference": "RDis-001",
"customerCategoryReference": "1113",
"customerCategory": {
"id": 62,
"reference": "1113",
"name": "joe",
"href": "/api/v1/customerCategories/62"
},
"discountList": {
"id": 4,
"reference": "RDis-001",
"name": "discount1",
"href": "/api/v1/discountLists/4"
},
"organization": "Lyon",
"dateCreated": "2016-08-24T10:11:58Z",
"lastUpdated": "2016-08-24T10:16:55Z"
}
Failure Output
Failure case:response.status = 400
{
"error": "missing_param",
"error_description": "discountListId parameter is missing"
}
{
"error": "already_assigned",
"error_description": "customerCategory is already assigned to discountList."
}
{
"error": "save_failed",
"error_description": "Failed to save instance"
}
{
"error": "invalid_param_type",
"error_description": "The type of parameter id you provided is not valid for this request."
}
Failure case:response.status = 404
{
"error":"not_found",
"error_description": "The discountList with the id 999 doesn't exist."
}
Failure case:response.status = 500
{
"error": "server_error",
"error_description": "Oops! Something went wrong..."
}