Create a partner ticket
You can create a partner ticket directly withPOST /api/v1/support/partner-tickets. If you do not need attachments, draftId is optional.
Add attachments to a new partner ticket
Attachments require a draft. Create the draft first, upload attachments to that draft, then submit the ticket with the samedraftId.
file. Multipart requests use Nuvera’s canonical multipart body hash. See Multipart body hash before implementing uploads.
List and read partner tickets
UseGET /api/v1/support/partner-tickets to list partner tickets and GET /api/v1/support/partner-tickets/{ticketId} to read one ticket.
For attachments already on a partner ticket, request a download URL with
GET /api/v1/support/partner-tickets/{ticketId}/attachments/{attachmentId}/download-url.
Reply to a partner ticket
Replies require a reply draft. Create the reply draft, optionally upload attachments to it, then submit the reply with thatdraftId.
Reply to customer tickets
Partner REST can list, read, and reply to customer tickets for the partner organization. It does not expose an endpoint to create a customer ticket.customerId and optional customerMatchState with values MATCHED, UNMATCHED, or AMBIGUOUS.
To reply, create a reply draft with POST /api/v1/support/customer-tickets/{ticketId}/reply-drafts, optionally upload attachments with POST /api/v1/support/customer-tickets/{ticketId}/reply-drafts/{draftId}/attachments, then submit the reply with POST /api/v1/support/customer-tickets/{ticketId}/replies.
For complete support endpoint details, open the API Reference.