Categories
API for managing Categories
List Categories
GET
https://www.magloft.com/api/portal/v1/categories/:app_id
This endpoint returns a list of all categories
that belong to the publication
Path Parameters
app_id
String
App ID (Publication) to scope this request for.
Get Category
GET
https://www.magloft.com/api/portal/v1/categories/:app_id/:id
This endpoint returns a specific category
by id
Path Parameters
app_id
String
App ID (Publication) to scope this request for.
id
Integer
Category ID
Sort Categories
POST
https://www.magloft.com/api/portal/v1/categories/:app_id/sort
This endpoint sorts all categories
by position
and returns an empty response
with status 204
Path Parameters
app_id
String
App ID (Publication) to scope this request for.
Request Body
positions
Array
positions[id]
Integer
positions[position]
Integer
Create Category
POST
https://www.magloft.com/api/portal/v1/categories/:app_id
This endpoint creates a new category
and returns the saved category
Path Parameters
app_id
String
App ID (Publication) to scope this request for.
Request Body
title
String
Title of a category
color
String
Hex color of a category
Update Category
PUT
https://www.magloft.com/api/portal/v1/categories/:app_id/:id
This endpoint updates a specific category
by id
and returns the updated category
Path Parameters
app_id
String
App ID (Publication) to scope this request for.
id
Integer
Category ID
Request Body
title
String
Title of a category
color
String
Hex color of a category
Delete Category
DELETE
https://www.magloft.com/api/portal/v1/categories/:app_id/:id
This endpoint deletes a specific category
by id
and returns an empty response
with status 204
Path Parameters
app_id
String
App ID (Publication) to scope this request for.
id
Integer
Category ID
Last updated