Back to Collection Items
IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
queryParams.i = CkJsonObject::ckCreate()
If queryParams.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkJsonObject::ckUpdateString(queryParams,"fields","[" + Chr(34) + "id" + Chr(34) + "," + Chr(34) + "created_at" + Chr(34) + "," + Chr(34) + "updated_at" + Chr(34) + "," + Chr(34) + "easy_form_id" + Chr(34) + "," + Chr(34) + "name" + Chr(34) + "," + Chr(34) + "status" + Chr(34) + "," + Chr(34) + "submitted_at" + Chr(34) + ",{" + Chr(34) + "subject" + Chr(34) + ":[" + Chr(34) + "id" + Chr(34) + "," + Chr(34) + "supplier_id" + Chr(34) + "," + Chr(34) + "custom_object_name" + Chr(34) + "," + Chr(34) + "custom_object_code" + Chr(34) + "]},{" + Chr(34) + "easy_form_widget_responses" + Chr(34) + ":[" + Chr(34) + "id" + Chr(34) + "," + Chr(34) + "easy_form_id" + Chr(34) + "," + Chr(34) + "easy_form_widget_id" + Chr(34) + "," + Chr(34) + "easy_form_response_id" + Chr(34) + "," + Chr(34) + "answer" + Chr(34) + "," + Chr(34) + "type" + Chr(34) + "," + Chr(34) + "field_name" + Chr(34) + "," + Chr(34) + "widget_label" + Chr(34) + "]},{" + Chr(34) + "requested_by" + Chr(34) + ": [" + Chr(34) + "id" + Chr(34) + "]},{" + Chr(34) + "created_by" + Chr(34) + ":[" + Chr(34) + "id" + Chr(34) + "]},{" + Chr(34) + "updated_by" + Chr(34) + ": [" + Chr(34) + "id" + Chr(34) + "]}]")
; Adds the "Authorization: Bearer <access_token>" header.
CkHttp::setCkAuthToken(http, "<access_token>")
resp.i = CkHttp::ckQuickRequestParams(http,"GET","https://domain.com/supplier_information/:supplier_information_id/easy_form_responses",queryParams)
If CkHttp::ckLastMethodSuccess(http) = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(queryParams)
ProcedureReturn
EndIf
Debug Str(CkHttpResponse::ckStatusCode(resp))
Debug CkHttpResponse::ckBodyStr(resp)
CkHttpResponse::ckDispose(resp)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(queryParams)
ProcedureReturn
EndProcedure
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": [
]
}