This method will return the list of purchased E-Delivery items for the specified customer.
Parameters
appKey
string
A key identifying the application making the call
userKey
string
A key identifying the user making the call
corpOrgID
int
The corp organization ID
customerID
long
The customer ID
Return Values
A list of E-Delivery items that the customer has purchased with the following fields
Type
int
The type of item on the order (1 – Event, 2 – Product, 7 – Package, 9 – Membership, 11 – Donation, 12 – Gift Card)
ID
long
The ID of the item
Quantity
int
The quantity of this item
Description
string
A short description of the item
Barcode
string
A barcode for the item if available
SeatDetail
string
Seat detail for the item if available
Name
string
Name of the Item
PriceType
string
Type of price
PromoCode
string
Promotion Code
TierID
long
Price Tier ID
TierName
string
Price Tier Name
VenueName
string
The name of the venue (Event type only)
StartDate
datetime
The start date of the event (Event type only)
StartDateTime
YYYY-MM-DDThh:mm:ss string (ISO 8601)
The start date/time of the event formatted as YYYY-MM-DDThh:mm:ss (Event type only)
Prices
list
The list of price levels for this item
Category
string
The price category name
Type
string
The price category type (Base, Tax, TicketFee, ServiceFee)
Amount
decimal
The price amount
VariableAmount
decimal
Variable dollar amount if used
Errors
ApplicationKeyMissing
1000
Required parameter appkey is missing or invalid
UserCredentialsMissing
1001
Required user credentials are missing or invalid
SecurityInsufficient
1002
User security does not permit access to the requested function
CustomerNotFound
1021
Customer not found
Example Request
https://prod1.agileticketing.net/api/sales.svc/json/CustomerListEDelivery?appkey={APPKEY}&userkey={USERKEY}&corporgid={CORPORGID}&customerID={CUSTOMERID}
Example JSON Response
[{ "Type":2147483647, "ID":9223372036854775807, "Quantity":2147483647, "Description":"String content", "Barcode":"String content", "SeatDetail":"String content", "Name":"String content", "PriceType":"String content", "PromoCode":"String content", "TierID":9223372036854775807, "TierName":"String content", "VenueName":"String content", "StartDate":"\/Date(928167600000-0500)\/", "StartDateTime":"YYYY-MM-DDThh:mm:ss", "Prices":[{ "Category":"String content", "Type":"String content", "Amount":12678967.543233 }], "VariableAmount":-1 }],
Example XML Response
<ArrayOfItem xmlns="http://www.agiletix.com/api"> <Item> <Type>2147483647</Type> <ID>9223372036854775807</ID> <Quantity>2147483647</Quantity> <Description>String content</Description> <Barcode>String content</Barcode> <SeatDetail>String content</SeatDetail> <Name>String content</Name> <PriceType>String content</PriceType> <PromoCode>String content</PromoCode> <TierID>9223372036854775807</TierID> <TierName>String content</TierName> <VenueName>String content</VenueName> <StartDate>1999-05-31T11:20:00</StartDate> <StartDateTime>YYYY-MM-DDThh:mm:ss</StartDateTime> <Prices> <Price> <Category>String content</Category> <Type>String content</Type> <Amount>12678967.543233</Amount> </Price> </Prices> <VariableAmount>12678967.543233</VariableAmount> </Item> </ArrayOfItem>
Comments