lianja / DocuSign Rooms API - v2 / Gets permission profiles from the associated eSign account.
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
// Adds the "Authorization: Bearer {{accessToken}}" header.
loHttp.AuthToken = "{{accessToken}}"
loHttp.SetRequestHeader("Accept","text/plain, application/json, text/json")
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/v2/accounts/{{accountId}}/esign_permission_profiles",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
release loHttp
release loSbResponseBody
Curl Command
curl -X GET
-H "Accept: text/plain, application/json, text/json"
-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2/accounts/{{accountId}}/esign_permission_profiles
Postman Collection Item JSON
{
"name": "Gets permission profiles from the associated eSign account.",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "text/plain, application/json, text/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"url": {
"raw": "{{baseUrl}}/v2/accounts/{{accountId}}/esign_permission_profiles",
"host": [
"{{baseUrl}}"
],
"path": [
"v2",
"accounts",
"{{accountId}}",
"esign_permission_profiles"
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}"
}
]
}
},
"response": [
]
}