Chilkat Online Tools

Python / Broker API / Brokerage Account

Back to Collection Items

import sys
import chilkat

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

http = chilkat.CkHttp()

http.put_BasicAuth(True)
http.put_Login("{{api_key}}")
http.put_Password("{{api_secret}}")

sbResponseBody = chilkat.CkStringBuilder()
success = http.QuickGetSb("https://domain.com/v1/accounts/:account_id",sbResponseBody)
if (success == False):
    print(http.lastErrorText())
    sys.exit()

print("Response status code = " + str(http.get_LastStatus()))
print(sbResponseBody.getAsString())

Curl Command

curl -X GET
	-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/accounts/:account_id

Postman Collection Item JSON

{
  "name": "Brokerage Account",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{HOST}}/v1/accounts/:account_id",
      "host": [
        "{{HOST}}"
      ],
      "path": [
        "v1",
        "accounts",
        ":account_id"
      ],
      "variable": [
        {
          "key": "account_id",
          "value": null
        }
      ]
    }
  },
  "response": [
  ]
}