J Cobb
- Total activity 131
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 10
Activity overview
Latest activity by J Cobb-
J Cobb commented,
I can't speak for how others are handling it but I can tell you what I would suggest… If you allow customers to order multiple items I would suggest that you create a new order for each item. You ...
-
J Cobb commented,
I suspect you're passing the performer_id incorrectly. As shown in the documentation the parameter name to pass is performances[performer_id]. Remember that your parameter names and values must be ...
-
J Cobb commented,
Currently the API does not offer any sort of mechanism for authorizing your clients. You could easily build your own table for clients with their auth credentials and their client_id and then use ...
-
J Cobb commented,
Here is how I create client addresses with the PHP Library: $address1 = new stdClass; $address1->company = 'Moe’s Tavern'; $address1->street_address = '555 Evergreen Terrace'; $address1->locali...
-
J Cobb commented,
Have you setup the sample app that comes with the PHP Library? It can execute pretty much any API call and it even shows you the code to create it (and you can look at the source code behind it). ...
-
J Cobb commented,
I'm still trying to confirm with the engineers which properties are required. Have you tried this with any other data? The example data currently in the documentation is horrible because it does no...
-
J Cobb commented,
I just emailed new Sandbox credentials to justgreattix@gmail.com
-
J Cobb commented,
Currently, implementing different shipping options and prices is left to you. We are exploring adding shipping options in the future.
-
J Cobb commented,
I'll see if I can address all of these. When an order is placed does the broker holding the tickets ship them directly to the customer or would they come to Just Great Tickets? That is up to you....
-
J Cobb commented,
What are you trying to do with this call? It looks like are trying to list clients, which would be a GET request. If you are trying to create a client you seem to be missing the JSON containing the...