Transfer a ticket
PUT
/events/:eventId/entries/:entryId/transferTransfer an unused (UNUSED) ticket from a multi-ticket purchase to another user. Only the purchaser can transfer, and tickets marked non-transferable cannot be transferred.
| Auth | Login required |
|---|
Path parameters
eventIdstringrequiredEvent ID.
entryIdstringrequiredID of the entry (ticket) to transfer.
Request body
transferToUserIdstringrequiredUser ID of the recipient.
Request
curl https://api.4s.link/events/EVENT_ID/entries/ENTRY_ID/transfer \-X PUT \-H "Authorization: Bearer 4s_at_..." \-H "Content-Type: application/json" \-d '{"transferToUserId": "u1a2b3c4-..."}'
Example response
{"id": "en1a2b3-...","state": "UNUSED","userId": "u1a2b3c4-..."}