MyVendor.Ticket API
/ticket
GET
Request
Name |
Type |
Description |
Default |
Required |
Constraints |
Example |
id |
string |
|
|
Optional |
|
|
Response
Object: Ticket
Name |
Type |
Description |
Required |
Constraint |
Example |
id |
string |
The unique identifier for a ticket. |
Optional |
{"maxLength":64} |
|
title |
string |
The unique identifier for a ticket. |
Optional |
{"maxLength":255} |
|
dateCreated |
string |
The date and time that the ticket was created |
Optional |
{"format":"datetime"} |
|
Embedded
Example
{
"id": "81c08016-d2e2-4e93-8982-39e4c905bb18",
"title": "title1",
"created_at": "2021-05-18 16:30:35",
"_embedded": {
"event": {
"event": "Nice event",
"_links": {
"self": {
"href": "\/event?ticketId=81c08016-d2e2-4e93-8982-39e4c905bb18"
}
}
}
},
"_links": {
"self": {
"href": "\/ticket?id=81c08016-d2e2-4e93-8982-39e4c905bb18"
}
}
}