How am I suppose to get the shipping price for a tshirt without creating an order?
Went through the api and I don't find any method to get the shipping price without creating an order. I am trying to receive the shipping price and add it into the total price and display it to user before they are directed for payment. Is there any possible way to handle this?? Also, I don't see any method to update or delete the order via api??
Hi Dylan,
We offer all of our pricing on our Pricing Page here:
http://www.tshirtgang.com/cp/pricing
We don't have an API that can tell you pricing before the order is placed, only after.
I would recommend creating your own shipping table and charge customers accordingly. Your pricing should be hire than tshirtgang's pricing in order to make a profit off each sale.
Thanks,
Andrew
We offer all of our pricing on our Pricing Page here:
http://www.tshirtgang.com/cp/pricing
We don't have an API that can tell you pricing before the order is placed, only after.
I would recommend creating your own shipping table and charge customers accordingly. Your pricing should be hire than tshirtgang's pricing in order to make a profit off each sale.
Thanks,
Andrew
Hi Andrew!
I am not sure how but recently createproduct api is returning Error: 500 and I am not being able to proceed my test. Here, is the detail array from curl:
[EXE] =>
[INF] => Array
(
[url] => https://www.tshirtgang.com/api/CreateProduct/
[content_type] =>
[http_code] => 500
[header_size] => 0
[request_size] => 760
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 2.807892
[namelookup_time] => 0.000341
[connect_time] => 0.027815
[pretransfer_time] => 0.10189
[size_upload] => 491
[size_download] => 0
[speed_download] => 0
[speed_upload] => 174
[download_content_length] => -1
[upload_content_length] => 491
[starttransfer_time] => 2.807874
[redirect_time] => 0
[certinfo] => Array
(
)
[redirect_url] =>
)
[ERR] => The requested URL returned error: 500
[ENO] => 22
can you please look into this and let me know .. you help is much appreciated..
thanks
I am not sure how but recently createproduct api is returning Error: 500 and I am not being able to proceed my test. Here, is the detail array from curl:
[EXE] =>
[INF] => Array
(
[url] => https://www.tshirtgang.com/api/CreateProduct/
[content_type] =>
[http_code] => 500
[header_size] => 0
[request_size] => 760
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 2.807892
[namelookup_time] => 0.000341
[connect_time] => 0.027815
[pretransfer_time] => 0.10189
[size_upload] => 491
[size_download] => 0
[speed_download] => 0
[speed_upload] => 174
[download_content_length] => -1
[upload_content_length] => 491
[starttransfer_time] => 2.807874
[redirect_time] => 0
[certinfo] => Array
(
)
[redirect_url] =>
)
[ERR] => The requested URL returned error: 500
[ENO] => 22
can you please look into this and let me know .. you help is much appreciated..
thanks
FYI: Also, yesterday night my time, it wasn't creating product as well but this morning its creating the product but not returning any xml response but the above error..
8699984 this is the product ID I just tried creating and it was successful but no xml response..
8699984 this is the product ID I just tried creating and it was successful but no xml response..
Hi Dylan,
I'm not seeing any issues with the CreateProduct api, there appears to be people uploading successfully as I type.
Can you open a Support Ticket with the XML you are using or send it to andrew.lyle@tshirtgang.com?
Don't post your XML here, or if you do, please remove any authentication keys.
I'm not seeing any issues with the CreateProduct api, there appears to be people uploading successfully as I type.
Can you open a Support Ticket with the XML you are using or send it to andrew.lyle@tshirtgang.com?
Don't post your XML here, or if you do, please remove any authentication keys.
Thank you for immediate response. Below is the xml code I am using:
$XML = "<?xml version=\"1.0\" encoding=\"utf-8\"?>
<ProductForm>
<Auth>
<key>My Key</key>
</Auth>
<Product>
<title>T Shirt Title</title>
<color>White</color>
<style>Standard</style>
<category>Anime</category>
<image>http://tee.dylanktest.com/covers/552dc6005d369.png</image>
<keywords>keyword</keywords>
</Product>
<Extra>
<appID>My AppID</appID>
</Extra>
</ProductForm>";
$sml = xml_post($XML, "https://www.tshirtgang.com/api/CreateProduct/");
$res = simplexml_load_string($sml);
$XML = "<?xml version=\"1.0\" encoding=\"utf-8\"?>
<ProductForm>
<Auth>
<key>My Key</key>
</Auth>
<Product>
<title>T Shirt Title</title>
<color>White</color>
<style>Standard</style>
<category>Anime</category>
<image>http://tee.dylanktest.com/covers/552dc6005d369.png</image>
<keywords>keyword</keywords>
</Product>
<Extra>
<appID>My AppID</appID>
</Extra>
</ProductForm>";
$sml = xml_post($XML, "https://www.tshirtgang.com/api/CreateProduct/");
$res = simplexml_load_string($sml);
You must be logged in to reply.