AutoIt
AutoIt
Retrieve User Account Data
See more DocuSign Examples
To make an API call to the DocuSign platform, your application needs both an access token (which you obtained in the previous step), and base URI that is unique to the user on whose behalf your application is making the API call. To get the base URI, call the/oauth/userinfoendpoint, supplying your application’s access token as a header.Chilkat AutoIt Downloads
Local $bSuccess = False
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
; Implements the following CURL command:
; curl --header "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ" https://account-d.docusign.com/oauth/userinfo
; Use the following online tool to generate HTTP code from a CURL command
; Convert a cURL Command to HTTP Source Code
; Adds the "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ" header.
$oJsonToken = ObjCreate("Chilkat.JsonObject")
; Load a previously obtained OAuth2 access token.
$bSuccess = $oJsonToken.LoadFile("qa_data/tokens/docusign.json")
If ($bSuccess = False) Then
ConsoleWrite($oJsonToken.LastErrorText & @CRLF)
Exit
EndIf
$oHttp.AuthToken = $oJsonToken.StringOf("access_token")
$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://account-d.docusign.com/oauth/userinfo",$oSbResponseBody)
If ($bSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False
ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)
Local $iRespStatusCode = $oHttp.LastStatus
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
ConsoleWrite("Response Header:" & @CRLF)
ConsoleWrite($oHttp.LastResponseHeader & @CRLF)
ConsoleWrite("Failed." & @CRLF)
Exit
EndIf
; Sample JSON response:
; (Sample code for parsing the JSON response is shown below)
; {
; "sub": "564f7988-xxxx-xxxx-xxxx-781ee556ab7a",
; "name": "Example J Smith",
; "given_name": "Example",
; "family_name": "Smith",
; "created": "2018-04-13T22:03:03.45",
; "email": "Example.Smith@exampledomain.com",
; "accounts": [
; {
; "account_id": "18b4799a-xxxx-xxxx-xxxx-b5b4b8a97604",
; "is_default": true,
; "account_name": "ExampleAccount",
; "base_uri": "https://demo.docusign.net"
; }
; ]
; }
; Sample code for parsing the JSON response...
; Use the following online tool to generate parsing code from sample JSON:
; Generate Parsing Code from JSON
Local $sAccount_id
Local $bIs_default
Local $sAccount_name
Local $sBase_uri
Local $sub = $oJResp.StringOf("sub")
Local $sName = $oJResp.StringOf("name")
Local $sGiven_name = $oJResp.StringOf("given_name")
Local $sFamily_name = $oJResp.StringOf("family_name")
Local $sCreated = $oJResp.StringOf("created")
Local $sEmail = $oJResp.StringOf("email")
Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("accounts")
While $i < $iCount_i
$oJResp.I = $i
$sAccount_id = $oJResp.StringOf("accounts[i].account_id")
$bIs_default = $oJResp.BoolOf("accounts[i].is_default")
$sAccount_name = $oJResp.StringOf("accounts[i].account_name")
$sBase_uri = $oJResp.StringOf("accounts[i].base_uri")
$i = $i + 1
Wend