Chilkat Online Tools

Java / Coupa Postman Collection - OAuth - Master / GET SIM Easy Form Responses

Back to Collection Items

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

    CkJsonObject queryParams = new CkJsonObject();
    queryParams.UpdateString("fields","[\"id\",\"created_at\",\"updated_at\",\"easy_form_id\",\"name\",\"status\",\"submitted_at\",{\"subject\":[\"id\",\"supplier_id\",\"custom_object_name\",\"custom_object_code\"]},{\"easy_form_widget_responses\":[\"id\",\"easy_form_id\",\"easy_form_widget_id\",\"easy_form_response_id\",\"answer\",\"type\",\"field_name\",\"widget_label\"]},{\"requested_by\": [\"id\"]},{\"created_by\":[\"id\"]},{\"updated_by\": [\"id\"]}]");

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");

    CkHttpResponse resp = http.QuickRequestParams("GET","https://domain.com/supplier_information/:supplier_information_id/easy_form_responses",queryParams);
    if (http.get_LastMethodSuccess() == false) {
        System.out.println(http.lastErrorText());
        return;
        }

    System.out.println(resp.get_StatusCode());
    System.out.println(resp.bodyStr());
  }
}

Curl Command

curl -G -d "fields=%5B%22id%22,%22created_at%22,%22updated_at%22,%22easy_form_id%22,%22name%22,%22status%22,%22submitted_at%22,%7B%22subject%22%3A%5B%22id%22,%22supplier_id%22,%22custom_object_name%22,%22custom_object_code%22%5D%7D,%7B%22easy_form_widget_responses%22%3A%5B%22id%22,%22easy_form_id%22,%22easy_form_widget_id%22,%22easy_form_response_id%22,%22answer%22,%22type%22,%22field_name%22,%22widget_label%22%5D%7D,%7B%22requested_by%22%3A%20%5B%22id%22%5D%7D,%7B%22created_by%22%3A%5B%22id%22%5D%7D,%7B%22updated_by%22%3A%20%5B%22id%22%5D%7D%5D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/supplier_information/:supplier_information_id/easy_form_responses

Postman Collection Item JSON

{
  "name": "GET SIM Easy Form Responses",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/supplier_information/:supplier_information_id/easy_form_responses?fields=[\"id\",\"created_at\",\"updated_at\",\"easy_form_id\",\"name\",\"status\",\"submitted_at\",{\"subject\":[\"id\",\"supplier_id\",\"custom_object_name\",\"custom_object_code\"]},{\"easy_form_widget_responses\":[\"id\",\"easy_form_id\",\"easy_form_widget_id\",\"easy_form_response_id\",\"answer\",\"type\",\"field_name\",\"widget_label\"]},{\"requested_by\": [\"id\"]},{\"created_by\":[\"id\"]},{\"updated_by\": [\"id\"]}]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "supplier_information",
        ":supplier_information_id",
        "easy_form_responses"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\",\"created_at\",\"updated_at\",\"easy_form_id\",\"name\",\"status\",\"submitted_at\",{\"subject\":[\"id\",\"supplier_id\",\"custom_object_name\",\"custom_object_code\"]},{\"easy_form_widget_responses\":[\"id\",\"easy_form_id\",\"easy_form_widget_id\",\"easy_form_response_id\",\"answer\",\"type\",\"field_name\",\"widget_label\"]},{\"requested_by\": [\"id\"]},{\"created_by\":[\"id\"]},{\"updated_by\": [\"id\"]}]"
        }
      ],
      "variable": [
        {
          "key": "supplier_information_id",
          "value": "650"
        }
      ]
    }
  },
  "response": [
  ]
}