Create ticket
documentedCreate a new ticket with the provided data.
POST /ticketsTicketsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$domain}}.supportbee.com/v1/tickets" \
-X POST \
-H "Authorization: Bearer {{SUPPORTBEE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"subject": "{{$title}}", "description": "{{$description}}", "requester": {"name": "{{$requester_name}}", "email": "{{$requester_email}}"}, "priority": "normal", "tags": ["{{$tag1}}", "{{$tag2}}"]}'