delphiAx / DocuSign Admin API / Returns a list of existing User List Exports (requests and completed exports) and their details/metadata
Back to Collection Items
var
http: TChilkatHttp;
success: Integer;
sbResponseBody: TChilkatStringBuilder;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
http.SetRequestHeader('Content-Type','application/json');
// Adds the "Authorization: Bearer {{accessToken}}" header.
http.AuthToken := '{{accessToken}}';
http.SetRequestHeader('Accept','application/json');
sbResponseBody := TChilkatStringBuilder.Create(Self);
success := http.QuickGetSb('https://{{hostenv}}/Management/v2/organizations/{{organizationId}}/exports/user_list',sbResponseBody.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
Memo1.Lines.Add('Response status code = ' + IntToStr(http.LastStatus));
Memo1.Lines.Add(sbResponseBody.GetAsString());
Curl Command
curl -X GET
-H "Accept: application/json"
-H "Content-Type: application/json"
-H "Authorization: Bearer {{accessToken}}"
https://{{hostenv}}/Management/v2/organizations/{{organizationId}}/exports/user_list
Postman Collection Item JSON
{
"name": "Returns a list of existing User List Exports (requests and completed exports) and their details/metadata",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"url": {
"raw": "https://{{hostenv}}/Management/v2/organizations/{{organizationId}}/exports/user_list",
"protocol": "https",
"host": [
"{{hostenv}}"
],
"path": [
"Management",
"v2",
"organizations",
"{{organizationId}}",
"exports",
"user_list"
],
"variable": [
{
"key": "organizationId",
"value": "{{organizationId}}"
}
]
},
"description": "Required scopes: user_read"
},
"response": [
]
}