Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
maxLevel3
typeflat

...

Overview

The following operations allow you to work with orders. Click an operation name to see details on how to use it.

For a sample proxy service that illustrates how to work with orders, see Sample configuration

OperationDescription
1Working with Orders in EventbriteOrder DetailsRetrieves the the order details on events.

Operation details

This section provides further details on the operations related to orders.

Anchor
Order Details
Order Details
Order Details

Code Block
titlegetOrderDetails
<eventbrite.getOrderDetails>
       <orderId>{$ctx:orderId}</orderId> 
</eventbrite.getOrderDetails>

Returns the order details on events.Use the operation with the following parameters.

Properties
  • orderId  : Id of the order.
Sample Request

Following is a sample REST request that can be handled by the getOrderDetails operation.

Code Block
titleSample request for getOrderDetails
{
"apiUrl":"https://www.eventbriteapi.com",
"accessToken":”<accessToken>",
"orderId":"<orderId>",
}

 Related API Documentation

  http://developer.eventbrite.com/docs/order-details/

Sample Configuration

Following is a sample proxy service illustrates how to connect to Eventbrite with the init operation and use the getOrderDetails operation.

...