Sample code for 30+ languages & platforms
Android™

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 Android™ Downloads

Android™
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    boolean success = false;

    //  This example assumes the Chilkat API to have been previously unlocked.
    //  See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();

    //  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

    CkHttpRequest req = new CkHttpRequest();
    req.put_HttpVerb("POST");
    req.put_Path("/v2/catalog/images");
    req.put_ContentType("multipart/form-data");
    success = req.AddFileForUpload2("file","/local/path/to/file.jpg","image/jpeg");

    //  Make sure to use an object_id for an already-existing catalog item.
    CkJsonObject json = new CkJsonObject();
    json.UpdateString("idempotency_key","528dea59-7bfb-43c1-bd48-4a6bba7dd61f86");
    json.UpdateString("object_id","2PTZYUOFGGDMT75UZLHQAPAC");
    json.UpdateString("image.id","#TEMP_ID");
    json.UpdateString("image.type","IMAGE");
    json.UpdateString("image.image_data.caption","A picture of a cup of coffee");

    req.AddParam("request",json.emit());

    req.AddHeader("Expect","100-continue");
    req.AddHeader("Authorization","Bearer ACCESS_TOKEN");
    req.AddHeader("Accept","application/json");
    req.AddHeader("Square-Version","2020-07-22");

    //  This example uses the sandbox: connect.squareupsandbox.com
    //  Production should use connect.squareup.com
    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpSReq("connect.squareupsandbox.com",443,true,req,resp);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    resp.GetBodySb(sbResponseBody);
    CkJsonObject jResp = new CkJsonObject();
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    Log.i(TAG, "Response Body:");
    Log.i(TAG, jResp.emit());

    int respStatusCode = resp.get_StatusCode();
    Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
    if (respStatusCode >= 400) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, resp.header());
        Log.i(TAG, "Failed.");
        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

    String imageType = jResp.stringOf("image.type");
    String imageId = jResp.stringOf("image.id");
    String imageUpdated_at = jResp.stringOf("image.updated_at");
    int imageVersion = jResp.IntOf("image.version");
    boolean imageIs_deleted = jResp.BoolOf("image.is_deleted");
    boolean imagePresent_at_all_locations = jResp.BoolOf("image.present_at_all_locations");
    String imageImage_dataName = jResp.stringOf("image.image_data.name");
    String imageImage_dataUrl = jResp.stringOf("image.image_data.url");
    String imageImage_dataCaption = jResp.stringOf("image.image_data.caption");

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}