| Requires any of the roles: | Admin, TeamAdmin | Required permission: | Tickets.Add |
| POST | /SharedTicketLink/Search |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| EventOwnerId | body | int? | No | |
| EventId | body | int? | No | |
| Status | body | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Items | form | List<SharedTicketLinkSummary> | No | |
| StatusCode | form | int | No | |
| Message | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ID | form | int | No | |
| Token | form | string | No | |
| Url | form | string | No | |
| EventId | form | int | No | |
| EventOwnerId | form | int | No | |
| TicketOwnerTypeId | form | int | No | |
| Count | form | int | No | |
| SectionId | form | int? | No | |
| Status | form | string | No | |
| ValidTo | form | DateTime | No | |
| CreatedAt | form | DateTime | No | |
| CreatedBy | form | string | No | |
| RecipientEmail | form | string | No | |
| RecipientPhone | form | string | No | |
| SoldTicketOrderId | form | int? | No | |
| SoldAt | form | DateTime? | No | |
| Seats | form | List<SharedTicketLinkSeatInfo> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| SeatId | form | int | No | |
| SectionName | form | string | No | |
| RowName | form | string | No | |
| SeatName | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /SharedTicketLink/Search HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
eventOwnerId: 0,
eventId: 0,
status: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
items:
[
{
id: 0,
token: String,
url: String,
eventId: 0,
eventOwnerId: 0,
ticketOwnerTypeId: 0,
count: 0,
sectionId: 0,
status: String,
validTo: 0001-01-01,
createdAt: 0001-01-01,
createdBy: String,
recipientEmail: String,
recipientPhone: String,
soldTicketOrderId: 0,
soldAt: 0001-01-01,
seats:
[
{
seatId: 0,
sectionName: String,
rowName: String,
seatName: String
}
]
}
],
statusCode: 0,
message: String
}