The CMS API v2.4 provides a simple RESTful GET method over HTTP.
The CMS API v2.4 uses appropriate HTTP verbs for every action. Currently the CMS API v2.4 only supports the GET method.
| Method | Description |
|---|---|
GET |
Used for retrieving resources. |
All responses are in JSON format.
Any requests sent to non-existent endpoints will generate the following error:
{
"error" : {
"message" : "Not Found",
"status_code": 404
}
}