You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jeffsb edited this page Mar 27, 2013
·
3 revisions
#(THIS API IS IN DEVELOPMENT)
#Synchronous Order System
When a user completed a transaction, we will POST to a url of your choice (Order URL) with
{order_id: string,//ScoreBig order Idticket_id: string,//your ticket id)section: string,row: string,quantity: number,bid: number//Price per ticket paid}
Your system must return with the following:
{seat_numbers: string,//Comma-separated list of seat numbersshow_now: boolean,//true if you can ship the tickets immediatelyship_date: string,//Ship date in the case where ShipNow is falseeticket_files: string//comma-separated list of base64 PDF files}
Our system will then HTTP POST to your system (Confirmation URL) with the following information:
{order_id: string,//Our order Idticket_id: string,//Your ticketblock idsuccess: boolean,//true if your confirmation was validtracking_number: string//Airbill number if applicable}