Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
DECLARE @queryParams int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @queryParams OUT
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, '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.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://domain.com/easy_form_responses/:id', @queryParams
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
END
GO
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": [
]
}