# Tickets This API group is in **pre-release** and may change without notice. Use with caution. Breaking changes may occur as development continues.
Tickets endpoints enable creating, updating and retrieving Tickets. ## List tickets. - [POST /tickets](https://developers.willowinc.com/openapi/willow-api/tickets/postticketstickets.md): Returns a paginated list of tickets. Default page size is 100, maximum is 1000. ## Creates a new ticket. - [PUT /tickets](https://developers.willowinc.com/openapi/willow-api/tickets/putticketstickets.md) ## Retrieves a ticket by its Id. - [GET /tickets/{ticketId}](https://developers.willowinc.com/openapi/willow-api/tickets/getticketsticketsticketid.md) ## Applies a JSON Patch document to update specific properties of a ticket. - [PATCH /tickets/{ticketId}](https://developers.willowinc.com/openapi/willow-api/tickets/patchticketsticketsticketid.md): This endpoint supports partial updates to a ticket using a JSON Patch document. The number of operations in the patch document must not exceed the number of updatable properties in the WorkflowCore.Controllers.Request.PatchTicketRequest model. Additionally, only "replace" operations are allowed. ## Retrieves a ticket attachment by its Id. - [GET /tickets/{ticketId}/attachments/{attachmentId}](https://developers.willowinc.com/openapi/willow-api/tickets/getticketsticketsticketidattachmentsattachmentid.md)