DataFlex
DataFlex
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 DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoHttp
Handle hoJsonToken
Variant vSbResponseBody
Handle hoSbResponseBody
Handle hoJResp
Integer iRespStatusCode
String sAccount_id
Boolean iIs_default
String sAccount_name
String sBase_uri
String sSub
String sName
String sGiven_name
String sFamily_name
String sCreated
String sEmail
Integer i
Integer iCount_i
String sTemp1
Move False To iSuccess
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// 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.
Get Create (RefClass(cComChilkatJsonObject)) To hoJsonToken
If (Not(IsComObjectCreated(hoJsonToken))) Begin
Send CreateComObject of hoJsonToken
End
// Load a previously obtained OAuth2 access token.
Get ComLoadFile Of hoJsonToken "qa_data/tokens/docusign.json" To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoJsonToken To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStringOf Of hoJsonToken "access_token" To sTemp1
Set ComAuthToken Of hoHttp To sTemp1
Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
Send CreateComObject of hoSbResponseBody
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComQuickGetSb Of hoHttp "https://account-d.docusign.com/oauth/userinfo" vSbResponseBody To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
If (Not(IsComObjectCreated(hoJResp))) Begin
Send CreateComObject of hoJResp
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
Set ComEmitCompact Of hoJResp To False
Showln "Response Body:"
Get ComEmit Of hoJResp To sTemp1
Showln sTemp1
Get ComLastStatus Of hoHttp To iRespStatusCode
Showln "Response Status Code = " iRespStatusCode
If (iRespStatusCode >= 400) Begin
Showln "Response Header:"
Get ComLastResponseHeader Of hoHttp To sTemp1
Showln sTemp1
Showln "Failed."
Procedure_Return
End
// 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
Get ComStringOf Of hoJResp "sub" To sSub
Get ComStringOf Of hoJResp "name" To sName
Get ComStringOf Of hoJResp "given_name" To sGiven_name
Get ComStringOf Of hoJResp "family_name" To sFamily_name
Get ComStringOf Of hoJResp "created" To sCreated
Get ComStringOf Of hoJResp "email" To sEmail
Move 0 To i
Get ComSizeOfArray Of hoJResp "accounts" To iCount_i
While (i < iCount_i)
Set ComI Of hoJResp To i
Get ComStringOf Of hoJResp "accounts[i].account_id" To sAccount_id
Get ComBoolOf Of hoJResp "accounts[i].is_default" To iIs_default
Get ComStringOf Of hoJResp "accounts[i].account_name" To sAccount_name
Get ComStringOf Of hoJResp "accounts[i].base_uri" To sBase_uri
Move (i + 1) To i
Loop
End_Procedure