Unicode C
Unicode C
Square API - Create Catalog Image
See more Square Examples
Uploads an image file to be represented by an CatalogImage object linked to an existing CatalogObject instance.Chilkat Unicode C Downloads
#include <C_CkHttpW.h>
#include <C_CkHttpRequestW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>
void ChilkatSample(void)
{
BOOL success;
HCkHttpW http;
HCkHttpRequestW req;
HCkJsonObjectW json;
HCkHttpResponseW resp;
HCkStringBuilderW sbResponseBody;
HCkJsonObjectW jResp;
int respStatusCode;
const wchar_t *imageType;
const wchar_t *imageId;
const wchar_t *imageUpdated_at;
int imageVersion;
BOOL imageIs_deleted;
BOOL imagePresent_at_all_locations;
const wchar_t *imageImage_dataName;
const wchar_t *imageImage_dataUrl;
const wchar_t *imageImage_dataCaption;
success = FALSE;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Implements the following CURL command:
// curl https://connect.squareup.com/v2/catalog/images \
// -X POST \
// -H 'Square-Version: 2020-07-22' \
// -H 'Authorization: Bearer ACCESS_TOKEN' \
// -H 'Accept: application/json' \
// -F 'file=@/local/path/to/file.jpg' \
// -F 'request={
// "idempotency_key": "528dea59-7bfb-43c1-bd48-4a6bba7dd61f86",
// "object_id": "ND6EA5AAJEO5WL3JNNIAQA32",
// "image": {
// "id": "#TEMP_ID",
// "type": "IMAGE",
// "image_data": {
// "caption": "A picture of a cup of coffee"
// }
// }
// }'
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
req = CkHttpRequestW_Create();
CkHttpRequestW_putHttpVerb(req,L"POST");
CkHttpRequestW_putPath(req,L"/v2/catalog/images");
CkHttpRequestW_putContentType(req,L"multipart/form-data");
success = CkHttpRequestW_AddFileForUpload2(req,L"file",L"/local/path/to/file.jpg",L"image/jpeg");
// Make sure to use an object_id for an already-existing catalog item.
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"idempotency_key",L"528dea59-7bfb-43c1-bd48-4a6bba7dd61f86");
CkJsonObjectW_UpdateString(json,L"object_id",L"2PTZYUOFGGDMT75UZLHQAPAC");
CkJsonObjectW_UpdateString(json,L"image.id",L"#TEMP_ID");
CkJsonObjectW_UpdateString(json,L"image.type",L"IMAGE");
CkJsonObjectW_UpdateString(json,L"image.image_data.caption",L"A picture of a cup of coffee");
CkHttpRequestW_AddParam(req,L"request",CkJsonObjectW_emit(json));
CkHttpRequestW_AddHeader(req,L"Expect",L"100-continue");
CkHttpRequestW_AddHeader(req,L"Authorization",L"Bearer ACCESS_TOKEN");
CkHttpRequestW_AddHeader(req,L"Accept",L"application/json");
CkHttpRequestW_AddHeader(req,L"Square-Version",L"2020-07-22");
// This example uses the sandbox: connect.squareupsandbox.com
// Production should use connect.squareup.com
resp = CkHttpResponseW_Create();
success = CkHttpW_HttpSReq(http,L"connect.squareupsandbox.com",443,TRUE,req,resp);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
CkJsonObjectW_Dispose(json);
CkHttpResponseW_Dispose(resp);
return;
}
sbResponseBody = CkStringBuilderW_Create();
CkHttpResponseW_GetBodySb(resp,sbResponseBody);
jResp = CkJsonObjectW_Create();
CkJsonObjectW_LoadSb(jResp,sbResponseBody);
CkJsonObjectW_putEmitCompact(jResp,FALSE);
wprintf(L"Response Body:\n");
wprintf(L"%s\n",CkJsonObjectW_emit(jResp));
respStatusCode = CkHttpResponseW_getStatusCode(resp);
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",CkHttpResponseW_header(resp));
wprintf(L"Failed.\n");
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
CkJsonObjectW_Dispose(json);
CkHttpResponseW_Dispose(resp);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "image": {
// "type": "IMAGE",
// "id": "UBXKMBQ4QK47QXMNQD6ELCZT",
// "updated_at": "2020-08-07T15:20:09.779Z",
// "version": 1596813609779,
// "is_deleted": false,
// "present_at_all_locations": true,
// "image_data": {
// "name": "",
// "url": "https://square-catalog-sandbox.s3.amazonaws.com/files/168973eab6f8b39b5cbdad52e3f82b23be196e2b/original.jpeg",
// "caption": "A picture of a cup of coffee"
// }
// }
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
// See this example explaining how this memory should be used: const char * functions.
imageType = CkJsonObjectW_stringOf(jResp,L"image.type");
imageId = CkJsonObjectW_stringOf(jResp,L"image.id");
imageUpdated_at = CkJsonObjectW_stringOf(jResp,L"image.updated_at");
imageVersion = CkJsonObjectW_IntOf(jResp,L"image.version");
imageIs_deleted = CkJsonObjectW_BoolOf(jResp,L"image.is_deleted");
imagePresent_at_all_locations = CkJsonObjectW_BoolOf(jResp,L"image.present_at_all_locations");
imageImage_dataName = CkJsonObjectW_stringOf(jResp,L"image.image_data.name");
imageImage_dataUrl = CkJsonObjectW_stringOf(jResp,L"image.image_data.url");
imageImage_dataCaption = CkJsonObjectW_stringOf(jResp,L"image.image_data.caption");
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
CkJsonObjectW_Dispose(json);
CkHttpResponseW_Dispose(resp);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
}