GET /tickets/maverick/{ticketId}/responses
Get Maverick ticket responses
Get responses and notes for a Maverick ticket (mapped to Pulse comment format)
Required Parameters
ticketId
path string Try it out
Loading...
Output:
Responses
Description
Responses retrieved successfully
{ "responses": [ { "id": "string", "body": "string", "isInternal": false, "createdBy": "string", "createdAt": "string" } ]}Description
Insufficient permissions
Description
Ticket not found
References
#/components/schemas/MaverickResponse
type: objectproperties: id: type: string body: type: string description: Response content isInternal: type: boolean description: Whether this is an internal note createdBy: type: string description: Response author createdAt: type: string format: date-time|export interface MaverickResponse { id?: string; /** Response content */ body?: string; /** Whether this is an internal note */ isInternal?: boolean; /** Response author */ createdBy?: string; createdAt?: Date;}Route Source Code
Check out the source code for this route entrypoint here: /tickets/maverick/[ticketId]/responses/route.ts
Or the swagger.yaml spec this documentation was generated from:
/tickets/maverick/swagger.yaml