Sign in

Create ticket

documented

Creates a new ticket.

POST /ticketsTicketsno implementation yet0 runs
No 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://secure.solve360.com/tickets/" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"title": "{{$title}}", "description": "{{$description}}", "priority": "{{$priority}}", "status": "{{$status}}", "due_date": "{{$due_date}}", "owner_id": "{{$owner_id}}", "project_id": "{{$project_id}}"}'