homepage/playground/create-ticket.http

21 lines
447 B
HTTP

GET {{instance}}/api/v1/tickets
Authorization: Token token={{token}}
Accept: application/json
###
POST {{instance}}/api/v1/tickets
Authorization: Token token={{token}}
Accept: application/json
Content-Type: application/json
{
"title": "Testticket",
"group": "testgruppe",
"customer_id": "guess:hi@example.com",
"article": {
"subject": "Testticket 2",
"body": "Das ist noch ein ein Testticket.",
"type": "web",
"internal": true
}
}