Breaking changes
Breaking changes are be listed below, along with the version they were introduced in.
v21.0
Attribute API - Search Requests
If there is no data to be returned when performing a search request, the response previously returned a 404 Not Found with the body containing an ErrorResultModel.
HTTP/1.1 404 Not Found
{
"errorType": "RESOURCE_NOT_FOUND",
"message": "The metadata value requested was not found",
"exception": null
}
The response now returns a 200 OK with the body containing an empty ApiPagedListResult.
HTTP/1.1 200 OK
{
"data": [],
"paging": {
"offset": 0,
"limit": 100,
"totalItemCount": 0
}
}