Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "order": {
// "external_order_identifier": "ABC-105",
// "ordered_at": "2014-01-16 14:37:56 -0600",
// "order_status": "awaiting_shipment",
// "subtotal_including_tax": "10.00",
// "total_including_tax": "10.00",
// "total_excluding_tax": "10.00",
// "discount_amount": "0.00",
// "coupon_discount": "1.00",
// "subtotal_excluding_tax": "0.00",
// "subtotal_tax": "0.00",
// "total_tax": "0",
// "base_shipping_cost": "0.00",
// "shipping_cost_including_tax": "0.00",
// "shipping_cost_excluding_tax": "0.00",
// "shipping_cost_tax": "0.00",
// "base_handling_cost": "0.00",
// "handling_cost_excluding_tax": "0.00",
// "handling_cost_including_tax": "0.00",
// "handling_cost_tax": "0.00",
// "base_wrapping_cost": "0.00",
// "wrapping_cost_excluding_tax": "0.00",
// "wrapping_cost_including_tax": "0.00",
// "wrapping_cost_tax": "0.00",
// "notes": "Please send promptly.",
// "billing_company": "Acme Inc.",
// "billing_first_name": "Fred",
// "billing_last_name": "Jones",
// "billing_address": "1234 Street",
// "billing_address2": "Suite 100",
// "billing_city": "Austin",
// "billing_state": "TX",
// "billing_postal_code": "78701",
// "billing_country": "USA",
// "billing_phone_number": "512-123-1234",
// "billing_email": "test@test.com",
// "recipients": [
// {
// "first_name": "Jack",
// "last_name": "Ship",
// "company": "ShippingEasy",
// "email": "jack@shippingeasy.com",
// "phone_number": "855-202-2275",
// "residential": "true",
// "address": "3700 N Capital of Texas Hwy Ste 550",
// "address2": "",
// "province": "",
// "state": "TX",
// "city": "Austin",
// "postal_code": "78746",
// "postal_code_plus_4": "1234",
// "country": "United States",
// "shipping_method": "Ground",
// "base_cost": "10.00",
// "cost_excluding_tax": "10.00",
// "cost_tax": "0.00",
// "base_handling_cost": "0.00",
// "handling_cost_excluding_tax": "0.00",
// "handling_cost_including_tax": "0.00",
// "handling_cost_tax": "0.00",
// "shipping_zone_id": "123",
// "shipping_zone_name": "XYZ",
// "items_total": "1",
// "items_shipped": "0",
// "line_items": [
// {
// "item_name": "Pencil Holder",
// "sku": "9876543",
// "bin_picking_number": "7",
// "unit_price": "1.30",
// "total_excluding_tax": "1.30",
// "weight_in_ounces": "10",
// "product_options": {
// "pa_size": "large",
// "Colour": "Blue"
// },
// "quantity": "1"
// }
// ]
// }
// ]
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"order.external_order_identifier",L"ABC-105");
CkJsonObjectW_UpdateString(json,L"order.ordered_at",L"2014-01-16 14:37:56 -0600");
CkJsonObjectW_UpdateString(json,L"order.order_status",L"awaiting_shipment");
CkJsonObjectW_UpdateString(json,L"order.subtotal_including_tax",L"10.00");
CkJsonObjectW_UpdateString(json,L"order.total_including_tax",L"10.00");
CkJsonObjectW_UpdateString(json,L"order.total_excluding_tax",L"10.00");
CkJsonObjectW_UpdateString(json,L"order.discount_amount",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.coupon_discount",L"1.00");
CkJsonObjectW_UpdateString(json,L"order.subtotal_excluding_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.subtotal_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.total_tax",L"0");
CkJsonObjectW_UpdateString(json,L"order.base_shipping_cost",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.shipping_cost_including_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.shipping_cost_excluding_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.shipping_cost_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.base_handling_cost",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.handling_cost_excluding_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.handling_cost_including_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.handling_cost_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.base_wrapping_cost",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.wrapping_cost_excluding_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.wrapping_cost_including_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.wrapping_cost_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.notes",L"Please send promptly.");
CkJsonObjectW_UpdateString(json,L"order.billing_company",L"Acme Inc.");
CkJsonObjectW_UpdateString(json,L"order.billing_first_name",L"Fred");
CkJsonObjectW_UpdateString(json,L"order.billing_last_name",L"Jones");
CkJsonObjectW_UpdateString(json,L"order.billing_address",L"1234 Street");
CkJsonObjectW_UpdateString(json,L"order.billing_address2",L"Suite 100");
CkJsonObjectW_UpdateString(json,L"order.billing_city",L"Austin");
CkJsonObjectW_UpdateString(json,L"order.billing_state",L"TX");
CkJsonObjectW_UpdateString(json,L"order.billing_postal_code",L"78701");
CkJsonObjectW_UpdateString(json,L"order.billing_country",L"USA");
CkJsonObjectW_UpdateString(json,L"order.billing_phone_number",L"512-123-1234");
CkJsonObjectW_UpdateString(json,L"order.billing_email",L"test@test.com");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].first_name",L"Jack");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].last_name",L"Ship");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].company",L"ShippingEasy");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].email",L"jack@shippingeasy.com");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].phone_number",L"855-202-2275");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].residential",L"true");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].address",L"3700 N Capital of Texas Hwy Ste 550");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].address2",L"");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].province",L"");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].state",L"TX");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].city",L"Austin");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].postal_code",L"78746");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].postal_code_plus_4",L"1234");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].country",L"United States");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].shipping_method",L"Ground");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].base_cost",L"10.00");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].cost_excluding_tax",L"10.00");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].cost_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].base_handling_cost",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].handling_cost_excluding_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].handling_cost_including_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].handling_cost_tax",L"0.00");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].shipping_zone_id",L"123");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].shipping_zone_name",L"XYZ");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].items_total",L"1");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].items_shipped",L"0");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].item_name",L"Pencil Holder");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].sku",L"9876543");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].bin_picking_number",L"7");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].unit_price",L"1.30");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].total_excluding_tax",L"1.30");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].weight_in_ounces",L"10");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].product_options.pa_size",L"large");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].product_options.Colour",L"Blue");
CkJsonObjectW_UpdateString(json,L"order.recipients[0].line_items[0].quantity",L"1");
resp = CkHttpW_PostJson3(http,L"Key}}",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-d '{
"order": {
"external_order_identifier": "ABC-105",
"ordered_at": "2014-01-16 14:37:56 -0600",
"order_status": "awaiting_shipment",
"subtotal_including_tax": "10.00",
"total_including_tax": "10.00",
"total_excluding_tax": "10.00",
"discount_amount": "0.00",
"coupon_discount": "1.00",
"subtotal_excluding_tax": "0.00",
"subtotal_tax": "0.00",
"total_tax": "0",
"base_shipping_cost": "0.00",
"shipping_cost_including_tax": "0.00",
"shipping_cost_excluding_tax": "0.00",
"shipping_cost_tax": "0.00",
"base_handling_cost": "0.00",
"handling_cost_excluding_tax": "0.00",
"handling_cost_including_tax": "0.00",
"handling_cost_tax": "0.00",
"base_wrapping_cost": "0.00",
"wrapping_cost_excluding_tax": "0.00",
"wrapping_cost_including_tax": "0.00",
"wrapping_cost_tax": "0.00",
"notes": "Please send promptly.",
"billing_company": "Acme Inc.",
"billing_first_name": "Fred",
"billing_last_name": "Jones",
"billing_address": "1234 Street",
"billing_address2": "Suite 100",
"billing_city": "Austin",
"billing_state": "TX",
"billing_postal_code": "78701",
"billing_country": "USA",
"billing_phone_number": "512-123-1234",
"billing_email": "test@test.com",
"recipients": [
{
"first_name": "Jack",
"last_name": "Ship",
"company": "ShippingEasy",
"email": "jack@shippingeasy.com",
"phone_number": "855-202-2275",
"residential": "true",
"address": "3700 N Capital of Texas Hwy Ste 550",
"address2": "",
"province": "",
"state": "TX",
"city": "Austin",
"postal_code": "78746",
"postal_code_plus_4": "1234",
"country": "United States",
"shipping_method": "Ground",
"base_cost": "10.00",
"cost_excluding_tax": "10.00",
"cost_tax": "0.00",
"base_handling_cost": "0.00",
"handling_cost_excluding_tax": "0.00",
"handling_cost_including_tax": "0.00",
"handling_cost_tax": "0.00",
"shipping_zone_id": "123",
"shipping_zone_name": "XYZ",
"items_total": "1",
"items_shipped": "0",
"line_items": [
{
"item_name": "Pencil Holder",
"sku": "9876543",
"bin_picking_number": "7",
"unit_price": "1.30",
"total_excluding_tax": "1.30",
"weight_in_ounces": "10",
"product_options": {
"pa_size": "large",
"Colour": "Blue"
},
"quantity": "1"
}
]
}
]
}
}'
https://app.shippingeasy.com/api/stores/{{Store API Key}}/orders?api_signature={{api_signature}}&api_timestamp={{api_timestamp}}&api_key={{API Key}}
Postman Collection Item JSON
{
"name": "Create Order",
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
"// calculate timestamp",
"const timestamp = parseInt(Date.now() / 1000);",
"console.log(\"timestamp: \" + timestamp);",
"pm.variables.set(\"api_timestamp\", timestamp);",
"",
"// Set your API key and API secret as Postman environment variables, your key and secret are available at https://app.shippingeasy.com/settings/api_credentials",
"const apiKey = pm.environment.get(\"API Key\");",
"const apiSecret = pm.environment.get(\"API Secret\");",
"const storeApiKey = pm.environment.get(\"Store API Key\");",
"",
"// build signature string - https://shippingeasy.readme.io/docs/authentication-signing-requests#how-to-calculate-a-signature",
"const signatureString = pm.request.method + \"&\" +",
" \"/api/stores/\" + storeApiKey + \"/orders&\" +",
" \"api_key=\" + apiKey + \"&\" +",
" \"api_timestamp=\" + timestamp + \"&\" +",
" pm.request.body.toString();",
"console.log(\"signature string: \" + signatureString);",
"",
"// generate signature",
"const apiSignature = CryptoJS.HmacSHA256(signatureString, apiSecret).toString(CryptoJS.enc.Hex);",
"console.log(\"api request signature: \" + apiSignature);",
"pm.variables.set(\"api_signature\", apiSignature);"
]
}
}
],
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"order\": {\n \"external_order_identifier\": \"ABC-105\",\n \"ordered_at\": \"2014-01-16 14:37:56 -0600\",\n \"order_status\": \"awaiting_shipment\",\n \"subtotal_including_tax\": \"10.00\",\n \"total_including_tax\": \"10.00\",\n \"total_excluding_tax\": \"10.00\",\n \"discount_amount\": \"0.00\",\n \"coupon_discount\": \"1.00\",\n \"subtotal_excluding_tax\": \"0.00\",\n \"subtotal_tax\": \"0.00\",\n \"total_tax\": \"0\",\n \"base_shipping_cost\": \"0.00\",\n \"shipping_cost_including_tax\": \"0.00\",\n \"shipping_cost_excluding_tax\": \"0.00\",\n \"shipping_cost_tax\": \"0.00\",\n \"base_handling_cost\": \"0.00\",\n \"handling_cost_excluding_tax\": \"0.00\",\n \"handling_cost_including_tax\": \"0.00\",\n \"handling_cost_tax\": \"0.00\",\n \"base_wrapping_cost\": \"0.00\",\n \"wrapping_cost_excluding_tax\": \"0.00\",\n \"wrapping_cost_including_tax\": \"0.00\",\n \"wrapping_cost_tax\": \"0.00\",\n \"notes\": \"Please send promptly.\",\n \"billing_company\": \"Acme Inc.\",\n \"billing_first_name\": \"Fred\",\n \"billing_last_name\": \"Jones\",\n \"billing_address\": \"1234 Street\",\n \"billing_address2\": \"Suite 100\",\n \"billing_city\": \"Austin\",\n \"billing_state\": \"TX\",\n \"billing_postal_code\": \"78701\",\n \"billing_country\": \"USA\",\n \"billing_phone_number\": \"512-123-1234\",\n \"billing_email\": \"test@test.com\",\n \"recipients\": [\n {\n \"first_name\": \"Jack\",\n \"last_name\": \"Ship\",\n \"company\": \"ShippingEasy\",\n \"email\": \"jack@shippingeasy.com\",\n \"phone_number\": \"855-202-2275\",\n \"residential\": \"true\",\n \"address\": \"3700 N Capital of Texas Hwy Ste 550\",\n \"address2\": \"\",\n \"province\": \"\",\n \"state\": \"TX\",\n \"city\": \"Austin\",\n \"postal_code\": \"78746\",\n \"postal_code_plus_4\": \"1234\",\n \"country\": \"United States\",\n \"shipping_method\": \"Ground\",\n \"base_cost\": \"10.00\",\n \"cost_excluding_tax\": \"10.00\",\n \"cost_tax\": \"0.00\",\n \"base_handling_cost\": \"0.00\",\n \"handling_cost_excluding_tax\": \"0.00\",\n \"handling_cost_including_tax\": \"0.00\",\n \"handling_cost_tax\": \"0.00\",\n \"shipping_zone_id\": \"123\",\n \"shipping_zone_name\": \"XYZ\",\n \"items_total\": \"1\",\n \"items_shipped\": \"0\",\n \"line_items\": [\n {\n \"item_name\": \"Pencil Holder\",\n \"sku\": \"9876543\",\n \"bin_picking_number\": \"7\",\n \"unit_price\": \"1.30\",\n \"total_excluding_tax\": \"1.30\",\n \"weight_in_ounces\": \"10\",\n \"product_options\": {\n \"pa_size\": \"large\",\n \"Colour\": \"Blue\"\n },\n \"quantity\": \"1\"\n }\n ]\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "app.shippingeasy.com/api/stores/{{Store API Key}}/orders?api_signature={{api_signature}}&api_timestamp={{api_timestamp}}&api_key={{API Key}}",
"host": [
"app",
"shippingeasy",
"com"
],
"path": [
"api",
"stores",
"{{Store API Key}}",
"orders"
],
"query": [
{
"key": "api_signature",
"value": "{{api_signature}}"
},
{
"key": "api_timestamp",
"value": "{{api_timestamp}}"
},
{
"key": "api_key",
"value": "{{API Key}}"
}
]
},
"description": "Create an order in ShippingEasy."
},
"response": [
]
}