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
-- 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
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
DECLARE @sbResponseBody int
-- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @http, 'QuickGetSb', @success OUT, 'https://domain.com/crm/v2.1/settings/automation/assignment_rules', @sbResponseBody
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
RETURN
END
DECLARE @jResp int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @http, 'LastStatus', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
-- Sample JSON response:
-- (Sample code for parsing the JSON response is shown below)
-- {
-- "assignment_rules": [
-- {
-- "created_time": "2020-03-30T00:00:00+05:30",
-- "modified_time": "2020-03-30T21:14:07+05:30",
-- "default_assignee": {
-- "name": "User 3",
-- "id": "4150868000001248015"
-- },
-- "module": {
-- "api_name": "Leads",
-- "id": "4150868000000002175"
-- },
-- "name": "test assignment rules",
-- "modified_by": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013"
-- },
-- "description": "Assign owner to a record",
-- "id": "4150868000001730013",
-- "created_by": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013"
-- }
-- },
-- {
-- "created_time": "2020-03-30T00:00:00+05:30",
-- "modified_time": "2020-03-30T20:44:25+05:30",
-- "default_assignee": {
-- "name": "User 3",
-- "id": "4150868000001248015"
-- },
-- "module": {
-- "api_name": "Leads",
-- "id": "4150868000000002175"
-- },
-- "name": "test assignment rules2",
-- "modified_by": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013"
-- },
-- "description": "Assign owner to a record",
-- "id": "4150868000001741002",
-- "created_by": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013"
-- }
-- },
-- {
-- "created_time": "2020-03-30T00:00:00+05:30",
-- "modified_time": "2020-03-30T00:00:00+05:30",
-- "default_assignee": {
-- "name": "User 3",
-- "id": "4150868000001248015"
-- },
-- "module": {
-- "api_name": "Leads",
-- "id": "4150868000000002175"
-- },
-- "name": "test assignment rules3",
-- "modified_by": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013"
-- },
-- "description": "Assign owner to a record",
-- "id": "4150868000001741010",
-- "created_by": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013"
-- }
-- }
-- ]
-- }
-- Sample code for parsing the JSON response...
-- Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
DECLARE @created_time nvarchar(4000)
DECLARE @modified_time nvarchar(4000)
DECLARE @Name nvarchar(4000)
DECLARE @Id nvarchar(4000)
DECLARE @Api_name nvarchar(4000)
DECLARE @moduleId nvarchar(4000)
DECLARE @name nvarchar(4000)
DECLARE @modified_byName nvarchar(4000)
DECLARE @modified_byId nvarchar(4000)
DECLARE @description nvarchar(4000)
DECLARE @id nvarchar(4000)
DECLARE @created_byName nvarchar(4000)
DECLARE @created_byId nvarchar(4000)
DECLARE @i int
SELECT @i = 0
DECLARE @count_i int
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'assignment_rules'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @created_time OUT, 'assignment_rules[i].created_time'
EXEC sp_OAMethod @jResp, 'StringOf', @modified_time OUT, 'assignment_rules[i].modified_time'
EXEC sp_OAMethod @jResp, 'StringOf', @Name OUT, 'assignment_rules[i].default_assignee.name'
EXEC sp_OAMethod @jResp, 'StringOf', @Id OUT, 'assignment_rules[i].default_assignee.id'
EXEC sp_OAMethod @jResp, 'StringOf', @Api_name OUT, 'assignment_rules[i].module.api_name'
EXEC sp_OAMethod @jResp, 'StringOf', @moduleId OUT, 'assignment_rules[i].module.id'
EXEC sp_OAMethod @jResp, 'StringOf', @name OUT, 'assignment_rules[i].name'
EXEC sp_OAMethod @jResp, 'StringOf', @modified_byName OUT, 'assignment_rules[i].modified_by.name'
EXEC sp_OAMethod @jResp, 'StringOf', @modified_byId OUT, 'assignment_rules[i].modified_by.id'
EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'assignment_rules[i].description'
EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'assignment_rules[i].id'
EXEC sp_OAMethod @jResp, 'StringOf', @created_byName OUT, 'assignment_rules[i].created_by.name'
EXEC sp_OAMethod @jResp, 'StringOf', @created_byId OUT, 'assignment_rules[i].created_by.id'
SELECT @i = @i + 1
END
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/settings/automation/assignment_rules
Postman Collection Item JSON
{
"name": "Assignment Rules",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/automation/assignment_rules",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"automation",
"assignment_rules"
]
}
},
"response": [
{
"name": "P1: module",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/automation/assignment_rules?module=Leads",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"automation",
"assignment_rules"
],
"query": [
{
"key": "module",
"value": "Leads"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 10 May 2021 10:52:53 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Cache-Control",
"value": "no-cache"
},
{
"key": "Expires",
"value": "Thu, 01 Jan 1970 00:00:00 GMT"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-ACCESSTOKEN-RESET",
"value": "2021-05-10T17:05:19+05:30"
},
{
"key": "clientVersion",
"value": "4016246"
},
{
"key": "clientsubVersion",
"value": "59f8474ad0046d6a2f6204e0448818d0"
},
{
"key": "Content-Disposition",
"value": "attachment; filename=response.json"
},
{
"key": "vary",
"value": "accept-encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Content-Language",
"value": "en-US"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000"
}
],
"cookie": [
],
"body": "{\n \"assignment_rules\": [\n {\n \"created_time\": \"2020-03-30T00:00:00+05:30\",\n \"modified_time\": \"2020-03-30T21:14:07+05:30\",\n \"default_assignee\": {\n \"name\": \"User 3\",\n \"id\": \"4150868000001248015\"\n },\n \"module\": {\n \"api_name\": \"Leads\",\n \"id\": \"4150868000000002175\"\n },\n \"name\": \"test assignment rules\",\n \"modified_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n },\n \"description\": \"Assign owner to a record\",\n \"id\": \"4150868000001730013\",\n \"created_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n }\n },\n {\n \"created_time\": \"2020-03-30T00:00:00+05:30\",\n \"modified_time\": \"2020-03-30T20:44:25+05:30\",\n \"default_assignee\": {\n \"name\": \"User 3\",\n \"id\": \"4150868000001248015\"\n },\n \"module\": {\n \"api_name\": \"Leads\",\n \"id\": \"4150868000000002175\"\n },\n \"name\": \"test assignment rules2\",\n \"modified_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n },\n \"description\": \"Assign owner to a record\",\n \"id\": \"4150868000001741002\",\n \"created_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n }\n },\n {\n \"created_time\": \"2020-03-30T00:00:00+05:30\",\n \"modified_time\": \"2020-03-30T00:00:00+05:30\",\n \"default_assignee\": {\n \"name\": \"User 3\",\n \"id\": \"4150868000001248015\"\n },\n \"module\": {\n \"api_name\": \"Leads\",\n \"id\": \"4150868000000002175\"\n },\n \"name\": \"test assignment rules3\",\n \"modified_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n },\n \"description\": \"Assign owner to a record\",\n \"id\": \"4150868000001741010\",\n \"created_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n }\n }\n ]\n}"
},
{
"name": "SUCCESS RESPONSE",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/automation/assignment_rules",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"automation",
"assignment_rules"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 10 May 2021 10:51:06 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Cache-Control",
"value": "no-cache"
},
{
"key": "Expires",
"value": "Thu, 01 Jan 1970 00:00:00 GMT"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-ACCESSTOKEN-RESET",
"value": "2021-05-10T17:05:19+05:30"
},
{
"key": "clientVersion",
"value": "4016246"
},
{
"key": "clientsubVersion",
"value": "59f8474ad0046d6a2f6204e0448818d0"
},
{
"key": "Content-Disposition",
"value": "attachment; filename=response.json"
},
{
"key": "vary",
"value": "accept-encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Content-Language",
"value": "en-US"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000"
}
],
"cookie": [
],
"body": "{\n \"assignment_rules\": [\n {\n \"created_time\": \"2020-03-30T00:00:00+05:30\",\n \"modified_time\": \"2020-03-30T21:14:07+05:30\",\n \"default_assignee\": {\n \"name\": \"User 3\",\n \"id\": \"4150868000001248015\"\n },\n \"module\": {\n \"api_name\": \"Leads\",\n \"id\": \"4150868000000002175\"\n },\n \"name\": \"test assignment rules\",\n \"modified_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n },\n \"description\": \"Assign owner to a record\",\n \"id\": \"4150868000001730013\",\n \"created_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n }\n },\n {\n \"created_time\": \"2020-03-30T00:00:00+05:30\",\n \"modified_time\": \"2020-03-30T20:44:25+05:30\",\n \"default_assignee\": {\n \"name\": \"User 3\",\n \"id\": \"4150868000001248015\"\n },\n \"module\": {\n \"api_name\": \"Leads\",\n \"id\": \"4150868000000002175\"\n },\n \"name\": \"test assignment rules2\",\n \"modified_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n },\n \"description\": \"Assign owner to a record\",\n \"id\": \"4150868000001741002\",\n \"created_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n }\n },\n {\n \"created_time\": \"2020-03-30T00:00:00+05:30\",\n \"modified_time\": \"2020-03-30T00:00:00+05:30\",\n \"default_assignee\": {\n \"name\": \"User 3\",\n \"id\": \"4150868000001248015\"\n },\n \"module\": {\n \"api_name\": \"Leads\",\n \"id\": \"4150868000000002175\"\n },\n \"name\": \"test assignment rules3\",\n \"modified_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n },\n \"description\": \"Assign owner to a record\",\n \"id\": \"4150868000001741010\",\n \"created_by\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\"\n }\n }\n ]\n}"
},
{
"name": "INVALID_REQUEST_METHOD",
"originalRequest": {
"method": "COPY",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/automation/assignment_rules",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"automation",
"assignment_rules"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 10 May 2021 10:51:35 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "124"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "X-Frame-Options",
"value": "deny"
},
{
"key": "X-Download-Options",
"value": "noopen"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
}
],
"cookie": [
],
"body": "{\n \"code\": \"INVALID_REQUEST_METHOD\",\n \"details\": {},\n \"message\": \"The http request method type is not a valid one\",\n \"status\": \"error\"\n}"
},
{
"name": "INVALID_URL_PATTERN",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/automation/assignment_rule",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"automation",
"assignment_rule"
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 10 May 2021 10:52:31 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "131"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Cache-Control",
"value": "no-cache"
},
{
"key": "Expires",
"value": "Thu, 01 Jan 1970 00:00:00 GMT"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-ACCESSTOKEN-RESET",
"value": "2021-05-10T17:05:19+05:30"
},
{
"key": "Content-Disposition",
"value": "attachment; filename=response.json"
},
{
"key": "X-Download-Options",
"value": "noopen"
},
{
"key": "Content-Language",
"value": "en-US"
}
],
"cookie": [
],
"body": "{\n \"code\": \"INVALID_URL_PATTERN\",\n \"details\": {},\n \"message\": \"Please check if the URL trying to access is a correct one\",\n \"status\": \"error\"\n}"
},
{
"name": "OAUTH_SCOPE_MISMATCH",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/automation/assignment_rules",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"automation",
"assignment_rules"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Thu, 13 May 2021 08:41:22 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "113"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Cache-Control",
"value": "no-cache"
},
{
"key": "Expires",
"value": "Thu, 01 Jan 1970 00:00:00 GMT"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Download-Options",
"value": "noopen"
}
],
"cookie": [
],
"body": "{\n \"code\": \"OAUTH_SCOPE_MISMATCH\",\n \"details\": {},\n \"message\": \"invalid oauth scope to access this URL\",\n \"status\": \"error\"\n}"
}
]
}