...
Table of Contents | ||||
---|---|---|---|---|
|
...
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.
Operation | Description |
---|---|
1Working with Orders in EventbriteOrder Details | Retrieves the the order details on events. |
Operation details
This section provides further details on the operations related to orders.
Anchor | ||||
---|---|---|---|---|
|
Code Block | ||
---|---|---|
| ||
<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 | ||
---|---|---|
| ||
{ "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.
...