mirror of
https://codeberg.org/angestoepselt/homepage.git
synced 2025-05-24 14:46:16 +00:00
21 lines
447 B
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
|
|
}
|
|
}
|