Chilkat Online Tools

Xojo / DocuSign Admin API / Returns the details/metadata for a single Account Setting Export request

Back to Collection Items

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

Dim http As New Chilkat.Http
Dim success As Boolean

http.SetRequestHeader "Content-Type","application/json"
// Adds the "Authorization: Bearer {{accessToken}}" header.
http.AuthToken = "{{accessToken}}"
http.SetRequestHeader "Accept","application/json"

Dim sbResponseBody As New Chilkat.StringBuilder
success = http.QuickGetSb("https://{{hostenv}}/Management/v2/organizations/{{organizationId}}/exports/account_settings/{{exportId}}",sbResponseBody)
If (success = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

System.DebugLog("Response status code = " + Str(http.LastStatus))
System.DebugLog(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/account_settings/{{exportId}}

Postman Collection Item JSON

{
  "name": "Returns the details/metadata for a single Account Setting Export request",
  "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/account_settings/{{exportId}}",
      "protocol": "https",
      "host": [
        "{{hostenv}}"
      ],
      "path": [
        "Management",
        "v2",
        "organizations",
        "{{organizationId}}",
        "exports",
        "account_settings",
        "{{exportId}}"
      ],
      "variable": [
        {
          "key": "organizationId",
          "value": "{{organizationId}}"
        },
        {
          "key": "exportId",
          "value": "{{exportId}}"
        }
      ]
    },
    "description": "Required scopes: account_read"
  },
  "response": [
  ]
}