Delphi (ActiveX) / Broker API / Download Document
Back to Collection Items
var
begin
http.BasicAuth := 1;http.Login := '{{api_key}}';http.Password := '{{api_secret}}';success := http.QuickGetSb('https://domain.com/v1/accounts/:account_id/documents/:document_id/download',sbResponseBody.ControlInterface);
Curl Command
curl -X GET
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/accounts/:account_id/documents/:document_id/download
Postman Collection Item JSON
{
"name": "Download Document",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/accounts/:account_id/documents/:document_id/download",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"accounts",
":account_id",
"documents",
":document_id",
"download"
],
"variable": [
{
"key": "account_id",
"value": null
},
{
"key": "document_id",
"value": null
}
]
}
},
"response": [
]
}