Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
Dim queryParams As New Chilkat.JsonObject
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.AuthToken = "<access_token>"
Dim resp As Chilkat.HttpResponse = http.QuickRequestParams("GET","https://domain.com/easy_form_responses/:id",queryParams)
If (http.LastMethodSuccess = False) Then
Debug.WriteLine(http.LastErrorText)
Exit Sub
End If
Debug.WriteLine(resp.StatusCode)
Debug.WriteLine(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/easy_form_responses/:id
Postman Collection Item JSON
{
"name": "GET Easy For Response by ID",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/easy_form_responses/:id?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": [
"easy_form_responses",
":id"
],
"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": "id",
"value": "9983"
}
]
}
},
"response": [
]
}