Tickets API
My Tickets
GET /api/v1/manager-core/tickets/my-tickets
Get tickets assigned to the authenticated user.
List Tickets
GET /api/v1/manager-core/tickets
Get all tickets.
Create Ticket
POST /api/v1/manager-core/tickets
Request Body:
| Parameter | Type | Required | Validation |
|---|---|---|---|
| subject | string | Yes | Ticket subject |
| description | string | Yes | Ticket description |
| priority | string | No | Ticket priority |
| assignee_id | integer | No | Assigned user ID |
Get Ticket
GET /api/v1/manager-core/tickets/{id}
Parameters:
id(path) - Ticket ID
Update Ticket
PUT /api/v1/manager-core/tickets/{id}
Parameters:
id(path) - Ticket ID
Delete Ticket
DELETE /api/v1/manager-core/tickets/{id}
Parameters:
id(path) - Ticket ID