Chilkat Online Tools

delphiDll / Broker API / Account Activities By Type

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_Create();

CkHttp_putBasicAuth(http,True);
CkHttp_putLogin(http,'{{api_key}}');
CkHttp_putPassword(http,'{{api_secret}}');

sbResponseBody := CkStringBuilder_Create();
success := CkHttp_QuickGetSb(http,'https://domain.com/v1/accounts/activities/',sbResponseBody);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add('Response status code = ' + IntToStr(CkHttp_getLastStatus(http)));
Memo1.Lines.Add(CkStringBuilder__getAsString(sbResponseBody));

CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);

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": [
  ]
}