Sample code for 30+ languages & platforms
Android™

Etsy: Get the Inventory for a Listing

See more Etsy Examples

Gets the inventory for a listing.

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 -X GET \
    //   https://openapi.etsy.com/v2/listings/listing_id/inventory?api_key=MY_ETSY_KEYSTRING

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = http.QuickGetSb("https://openapi.etsy.com/v2/listings/listing_id/inventory?api_key=MY_ETSY_KEYSTRING",sbResponseBody);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

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

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

    int respStatusCode = http.get_LastStatus();
    Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
    if (respStatusCode >= 400) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, http.lastHeader());
        Log.i(TAG, "Failed.");
        return;
        }

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "count": 1,
    //   "results": {
    //     "products": [
    //       {
    //         "product_id": 3361120103,
    //         "property_values": [
    //         ],
    //         "offerings": [
    //           {
    //             "offering_id": 3579642570,
    //             "price": {
    //               "amount": 16000,
    //               "divisor": 100,
    //               "currency_code": "USD",
    //               "currency_formatted_short": "$160.00",
    //               "currency_formatted_long": "$160.00 USD",
    //               "currency_formatted_raw": "160.00"
    //             },
    //             "quantity": 1
    //           }
    //         ]
    //       }
    //     ]
    //   },
    //   "params": {
    //     "listing_id": "720138253",
    //     "write_missing_inventory": false
    //   },
    //   "type": "ListingInventory",
    //   "pagination": {}
    // }

    // Sample code for parsing the JSON response...
    // Use the following online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    int product_id;
    int j;
    int count_j;
    int offering_id;
    int priceAmount;
    int priceDivisor;
    String priceCurrency_code;
    String priceCurrency_formatted_short;
    String priceCurrency_formatted_long;
    String priceCurrency_formatted_raw;
    int quantity;

    int count = jResp.IntOf("count");
    String paramsListing_id = jResp.stringOf("params.listing_id");
    boolean paramsWrite_missing_inventory = jResp.BoolOf("params.write_missing_inventory");
    String v_type = jResp.stringOf("type");
    int i = 0;
    int count_i = jResp.SizeOfArray("results.products");
    while (i < count_i) {
        jResp.put_I(i);
        product_id = jResp.IntOf("results.products[i].product_id");
        j = 0;
        count_j = jResp.SizeOfArray("results.products[i].property_values");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
            }

        j = 0;
        count_j = jResp.SizeOfArray("results.products[i].offerings");
        while (j < count_j) {
            jResp.put_J(j);
            offering_id = jResp.IntOf("results.products[i].offerings[j].offering_id");
            priceAmount = jResp.IntOf("results.products[i].offerings[j].price.amount");
            priceDivisor = jResp.IntOf("results.products[i].offerings[j].price.divisor");
            priceCurrency_code = jResp.stringOf("results.products[i].offerings[j].price.currency_code");
            priceCurrency_formatted_short = jResp.stringOf("results.products[i].offerings[j].price.currency_formatted_short");
            priceCurrency_formatted_long = jResp.stringOf("results.products[i].offerings[j].price.currency_formatted_long");
            priceCurrency_formatted_raw = jResp.stringOf("results.products[i].offerings[j].price.currency_formatted_raw");
            quantity = jResp.IntOf("results.products[i].offerings[j].quantity");
            j = j + 1;
            }

        i = i + 1;
        }


  }

  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."
  }
}