Offline Delivery Confirmation

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)

To generate an access token, use the [generateToken API](https://developer.stubhub.com/oauth/apis/post/accesstoken). 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)

The format of the request to be received

ContentType
(required)

The format of the request to be received

Body Parameters


Name Values Description
body

Request Body

saleId Sale Id null true

HTTP Basic

OAuth 2.0

API Key

Reset

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 Code
    Error Code
    Description
  • 400
    400

    Bad Request

  • 401
    401

    Not authorized to access the API

  • 403
    403

    Forbidden

  • 404
    404

    Not Found

  • 500
    500

    fulfillment.delivery.systemError

Resource Summary

Security

Content Type

application/json

Category

Offline Delivery Confirmation

Working...