| Requires any of the roles: | Admin, TeamAdmin, MobileApp | Requires the permission: | ReadData |
| POST | /ticketTransfer/incoming |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| PhoneVerificationNumber | body | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Transfers | form | List<TicketTransferIncomingItem> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| StatusCode | form | int | No | |
| Message | form | string | No | |
| ErrorCode | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| TransferToken | form | string | No | |
| EventId | form | int | No | |
| EventName | form | string | No | |
| TimeOfEvent | form | DateTime? | No | |
| FromPhoneDisplay | form | string | No | |
| Tickets | form | List<TicketTransferTicketSummary> | No | |
| CreatedAt | form | DateTime | No | |
| ExpiresAt | form | DateTime | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| TicketName | form | string | No | |
| TicketDisplayString | form | string | No | |
| Count | form | int | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /ticketTransfer/incoming HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: application/json
Content-Type: application/json
Content-Length: length
{"phoneVerificationNumber":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"transfers":[{"transferToken":"String","eventId":0,"eventName":"String","timeOfEvent":"0001-01-01T00:00:00.0000000","fromPhoneDisplay":"String","tickets":[{"ticketName":"String","ticketDisplayString":"String","count":0}],"createdAt":"0001-01-01T00:00:00.0000000","expiresAt":"0001-01-01T00:00:00.0000000"}],"statusCode":0,"message":"String","errorCode":"String"}