Verbs API
API for managing Verbs resources.
Fields
interface Verbs {
action?: string;
act?: string;
activity?: string;
event?: string;
subject?: string;
object?: string;
inverse?: string;
inverseAct?: string;
inverseActivity?: string;
inverseEvent?: string;
inverseSubject?: string;
inverseObject?: string;
}
API Endpoints
GET /api/verbs
Retrieves a list of Verbs 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/verbs/:id
Retrieves a single Verbs by ID.
POST /api/verbs
Creates a new Verbs.
PATCH /api/verbs/:id
Updates an existing Verbs.
DELETE /api/verbs/:id
Deletes a Verbs.
Last updated on