Back to Collection Items
// 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);
// 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) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
Log.i(TAG, resp.bodyStr());
}
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."
}
}
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": [
]
}