Categories
Use this endpoint to obtain details on Adaptix's categories or to manipulate category memberships.
Get Category
HTTP Request
GET /categories/ID
Response
Expected Response Code: 200
See JSON code example.
Category Properties
Name | Type | Description |
---|---|---|
id | int | ID of the category |
isPublished | boolean | Whether the category is published |
dateAdded | datetime | Date/time category was created |
createdBy | int | ID of the user that created the category |
createdByUser | string | Name of the user that created the category |
dateModified | datetime/null | Date/time category was last modified |
modifiedBy | int | ID of the user that last modified the category |
modifiedByUser | string | Name of the user that last modified the category |
title | string | The category title |
alias | string | The category alias |
description | string | The category description |
color | string | The category color |
bundle | string | The bundle where the category will be available |
List Contact Categories
HTTP Request
GET /categories
Response
Expected Response Code: 200
See JSON code example.
Category Properties
Name | Type | Description |
---|---|---|
id | int | ID of the category |
isPublished | boolean | Whether the category is published |
dateAdded | datetime | Date/time category was created |
createdBy | int | ID of the user that created the category |
createdByUser | string | Name of the user that created the category |
dateModified | datetime/null | Date/time category was last modified |
modifiedBy | int | ID of the user that last modified the category |
modifiedByUser | string | Name of the user that last modified the category |
title | string | The category title |
alias | string | The category alias |
description | string | The category description |
color | string | The category color |
bundle | string | The bundle where the category will be available |
Create Category
HTTP Request
POST /categories/new
Post Parameters
Name | Description |
---|---|
title | string |
bundle | string |
Response
Expected Response Code: 201
Properties
Same as Get Category.
Edit Category
PUT creates a category if the given ID does not exist and clears all the category information, adds the information from the request. PATCH fails if the category with the given ID does not exist and updates the category field values with the values form the request.
HTTP Request
To edit a category and return a 404 if the category is not found:
PATCH /categories/ID/edit
To edit a category and create a new one if the category is not found:
PUT /categories/ID/edit
Post Parameters
Name | Description |
---|---|
title | string |
bundle | string |
Response
If PUT
, the expected response code is 200
if the category was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Category.
Delete Category
Delete a category.HTTP Request
DELETE /categories/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Category.
Assign a Category
To assign a category to an entity simply set category = [ID]
to the payload. For example this is how a category 123 can be asssigned to a new Asset:
The category must exist in the Adaptix instance and the entity must support categories,