View all action categories
Learn about the GetAll endpoint in the FeedingActionCategory collection.
In Affective Computing by Virtue, actions can be of three categories; Content, Interaction, and Triggered Action. This API lets you retrieve details of all action categories, such as its action category ID. You can also filter the results using pagination parameters.
API request
Parameters
Keyword
A pagination parameter that helps you filter results by specific keywords.
SkipCount
A pagination parameter that helps you define the number of results to skip (i.e. where to start counting) when returning results.
MaxResultCount
A pagination parameter that helps you limit the number of results returned. It specifies the number of retrieved results.
API response
Sample
{
"result": {
"totalCount": 3,
"items": [
{
"id": 1,
"name": "Content"
},
{
"id": 2,
"name": "Interaction"
},
{
"id": 3,
"name": "Triggered Action"
}
]
},
"targetUrl": null,
"success": true,
"error": null,
"unAuthorizedRequest": false,
"__abp": true
}Attributes
id
Unique identifier of the action category.
name
Name of the action category.
Last updated
Was this helpful?