The REST API for for cmsBlock search is supposed to return an ID according to the swagger documentation
{
"items": [
{
"id": 0,
"identifier": "string",
"title": "string",
"content": "string",
"creationTime": "string",
"updateTime": "string",
"active": true
}
],
"searchCriteria": {
"filterGroups": [
{
"filters": [
{
"field": "string",
"value": "string",
"conditionType": "string"
}
]
}
],
"sortOrders": [
{
"field": "string",
"direction": "string"
}
],
"pageSize": 0,
"currentPage": 0
},
"totalCount": 0
}
When I make a call, the ID field does not exist. Without an ID I can't make subsequent calls to update the content.
This is with the latest version Magento EE running on Magento Cloud.
What am I missing? If this is a bug who should I report it to?