(Quick Reference) Service: Delete a return operation

Description: This web service is used in order to delete a return operation object from the database

URL:

https://BASE_URL/api/VERSION/returns/{id}

URL with external_id:

https://BASE_URL/api/VERSION/returns/reference/{id}

Method: DELETE

Parameters:

NameDescriptionTypeRequiredExamples values
idId of the desired operation to deleteLong/StringYes777

Success Output

Success case: response.status=200
{
    "success": "true",
    "success_description": "Instance deleted successfully"
}

Failure Output

Failure case:response.status = 400
{
    "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 operation with the id 999 doesn't exist."
}

Failure case:response.status = 500
{
    "error": "server_error",
    "error_description": "Oops! Something went wrong..."
}