API Reference
Content
Retrieve a single piece of content:
GET /content/:idRetrieve a list of content:
GET /contentFilter content by tag:
GET /content?tag=:tagPaginate content results:
GET /content?page=:page&limit=:limitCreate a new piece of content:
POST /contentCreate multiple pieces of content:
POST /content/batchUpdate a piece of content:
PUT /content/:idUpdate multiple pieces of content:
PUT /content/batchDelete a piece of content:
DELETE /content/:idDelete multiple pieces of content:
DELETE /content/batchAssets
Upload a new asset:
POST /assetsUpdate an existing asset:
PUT /assets/:idDelete an asset:
DELETE /assets/:idRetrieve a list of assets:
GET /assetsFilter assets by type:
GET /assets?type=:typePaginate asset results:
GET /assets?page=:page&limit=:limitUsers
Create a new user:
POST /usersUpdate an existing user:
PUT /users/:idDelete a user:
DELETE /users/:idRetrieve a list of users:
GET /usersFilter users by role:
GET /users?role=:rolePaginate user results:
GET /users?page=:page&limit=:limitLocalization
Create a new translation:
POST /translationsUpdate an existing translation:
PUT /translations/:idDelete a translation:
DELETE /translations/:idRetrieve a list of translations:
GET /translationsFilter translations by language:
GET /translations?language=:languagePaginate translation results:
GET /translations?page=:page&limit=:limitWebhooks
Register a new webhook:
POST /webhooksUpdate an existing webhook:
PUT /webhooks/:idDelete a webhook:
DELETE /webhooks/:id