Offline Delivery Confirmation
post
Offline Delivery Confirmation
Allows an authenticated seller to confirm offline fulfillment. This typically applies to mobile transfer or flash transfer delivery methods.
You can use this API to fulfill mobile transfer tickets, in one of the following ways:
- Example 1: If you have a single confirmation number or confirmation URL for all the seats in the sale transaction:
POST https://api.stubcloudprod.com/sellers/sales/confirm/v3/{saleID} { "ConfirmationRequest": { "confirmationNumber": "https://www.example.com/..." } }
- Example 2: If you have a confirmation number or confirmation URL for each seat in the sale transaction:
POST https://api.stubcloudprod.com/sellers/sales/confirm/v3/{saleID} { "ConfirmationRequest": { "mobileUrls": [ { "url": "https://www.example.com/...", "seatId": "12345", "section": "Upper baseline", "row": "12", "seat": "34", "transferId": "8765", "delete": false }, { "url": "https://www.example.com/...", "seatId": "12346", "section": "Upper baseline", "row": "12", "seat": "35", "transferId": "8766", "delete": false } ] } }
Resource URL
https://api.stubcloudprod.com/sellers/sales /confirm/v3/{saleId}
Header Parameters
Name | Values | Description |
---|---|---|
Authorization
(required) |
Note that you will need to add a 'Bearer ' prefix to your access token. Otherwise, you'll get an 'Invalid Access Token' error |
|
Accept
(required) |
|
|
ContentType
(required) |
|
Request Body
saleId
Sale Id
Make a request and see the response.
Make a request and see the response.
Make a request and see the response.
Response Error Details
-
HTTP CodeError CodeDescription
-
400400
Bad Request
-
401401
Not authorized to access the API
-
403403
Forbidden
-
404404
Not Found
-
500500
fulfillment.delivery.systemError
Resource Summary |
|
Security |
None |
Content Type |
application/json |
Category |
Offline Delivery Confirmation |
Working...