SQL Server / Broker API / Account Activities By Type
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
EXEC sp_OASetProperty @http, 'BasicAuth', 1
EXEC sp_OASetProperty @http, 'Login', '{{api_key}}'
EXEC sp_OASetProperty @http, 'Password', '{{api_secret}}'
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/v1/accounts/activities/', @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
EXEC sp_OAGetProperty @http, 'LastStatus', @iTmp0 OUT
PRINT 'Response status code = ' + @iTmp0
EXEC sp_OAMethod @sbResponseBody, 'GetAsString', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
END
GO
Curl Command
curl -X GET
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/accounts/activities/
Postman Collection Item JSON
{
"name": "Account Activities By Type",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/accounts/activities/",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"accounts",
"activities",
""
],
"query": [
{
"key": "date",
"value": "2021-09-13",
"description": "Both formats YYYY-MM-DD and YYYY-MM-DDTHH:MM:SSZ supported.",
"disabled": true
},
{
"key": "until",
"value": "2021-09-10",
"description": "Both formats YYYY-MM-DD and YYYY-MM-DDTHH:MM:SSZ supported. Cannot be used with date.",
"disabled": true
},
{
"key": "after",
"value": "2021-09-01",
"description": "Both formats YYYY-MM-DD and YYYY-MM-DDTHH:MM:SSZ supported. Cannot be used with date.",
"disabled": true
},
{
"key": "direction",
"value": "asc",
"description": "Defaults to desc",
"disabled": true
},
{
"key": "account_id",
"value": "",
"description": "string/UUID",
"disabled": true
},
{
"key": "page_size",
"value": "1",
"description": "The maximum number of entries to return in the response",
"disabled": true
},
{
"key": "page_token",
"value": "1",
"description": "The ID of the end of your current page of results",
"disabled": true
}
]
}
},
"response": [
]
}