Actions API
API for managing Actions resources.
Fields
interface Actions {
subject?: string;
verb?: string;
object?: string;
hash?: string;
generation?: any;
}
API Endpoints
GET /api/actions
Retrieves a list of Actions with pagination.
Query Parameters
limit
: Maximum number of items to return (default: 10)page
: Page number for pagination (default: 1)sort
: Field to sort by (default: createdAt)where
: JSON query for filtering results
GET /api/actions/:id
Retrieves a single Actions by ID.
POST /api/actions
Creates a new Actions.
PATCH /api/actions/:id
Updates an existing Actions.
DELETE /api/actions/:id
Deletes a Actions.
Last updated on