Actions
List action statuses for type
Retrieves a list of action statuses that are valid for a specific action type.
For detailed information about actions, action types, and action statuses, see the Prewave Help Center.
Quick Start:
GET /public/v1/actions/statuses?typeId=5
Response Format: Returns only the statuses that are valid for the specified action type. This is essential for:
- Building type-specific status selection UI components
- Understanding which statuses can be assigned to actions of a specific type
Status Transitions: Each action type has a defined set of valid statuses.
Use Cases:
- Discover valid statuses for a specific action type
- Build dynamic UI that only shows valid statuses for each action type
Finding Action Type IDs: Use GET /public/v1/actions/types to find valid typeId values.
Related Operations:
- GET /public/v1/actions/types - List all available action types
- GET /public/v1/actions/statuses - List all statuses (not filtered by type)
Required Permission: access_public_actions
get/public/v1/actions/statuses
Query parameters
typeIdinteger required
Action type ID. Use GET /public/v1/actions/types to find action type IDs.
Response
Successfully retrieved action statuses for the specified type
Example response
[
{
"id": 3,
"title": "In Progress",
"state": "InProgress"
}
]