Assets API
DELETE/api/v1/assets/{id}/tickets/{ticketId}
Product availabilityAlgaPSA

Unlink a ticket from an asset

Deletes the asset_associations row (entity_type=ticket) linking the path asset and ticket for the authenticated tenant. The route is authenticated and tenant-scoped via withApiKeyRouteAuth and enforces asset:update plus ticket:read. Returns 404 when no such link exists.

RBAC · asset

Path parameters

idstring <uuid>Required
Asset UUID from assets.asset_id.
ticketIdstring <uuid>Required
Ticket UUID from tickets.ticket_id.

Response codes

204
Link removed.
401
x-api-key missing/invalid.
403
Caller lacks asset:update or ticket:read.
404
Asset-ticket association not found.
500
Unexpected error.