The Console API is not yet ready for public access. This documentation is WIP...
The Console API allows you to do administrative tasks of a blog. This is the same API we use internally in the Console. You can use it to automate some tasks or even build a completely new mini-console by yourself.
GET
- to get data, usually an array of resourcesPOST
- to create a resourcePATCH
- to partially update a resourcePUT
- to completely update an resourceDELETE
- to delete a resourceThe Console API is huge, and is categorized by what "resource" you want to access or manage. Most categories have CRUD operations but some may have more endpoints for specific tasks. These objects are defined within the Category. Also, note that Console API objects are different from Data API objects.
Jump to each category:
Endpoints
GET /posts
- Get postsGET /pages
- Get pagesPOST /post
- Create a post/pageGET /post/{id}
- Get a post/pagePATCH /post/{id}
- Update a post/pageDELETE /post/{id}
- Delete a post/pagePOST /post/{id}/variant
- Create a post language variantDELETE /post/{id}/variant
- Delete a post language variant