Skip to content
Pile
Esc
↑↓navigate↵open⌘Jpreview

List support ticket artifacts

GET/workspaces/{organizationId}/support/tickets/{ticketId}/artifacts
Path parameters
organizationIdstringrequired
ticketIdstringrequired
Responses
200

Ticket artifacts — attachments with inline content for text/JSON payloads (debugger.json, network logs, replay HTML). One call gives an agent the full capture bundle for debugging.

artifactsobject[]required
Show properties
Array of object
idstringrequired
typestringrequired
fileNamestring | nullrequired
contentTypestring | nullrequired
sizenumber | nullrequired
urlstring | nullrequired
availablebooleanrequired
contentany | null
404

Ticket not found

Try it
Server
Parameters
Request
curl -X GET '/workspaces/string/support/tickets/string/artifacts'
Response
{
  "artifacts": [
    {
      "id": "string",
      "type": "string",
      "fileName": "string",
      "contentType": "string",
      "size": 0,
      "url": "string",
      "available": true,
      "content": null
    }
  ]
}