STS 3 - Beispielkonfiguration
In dieser Anleitung wird eine Beispiel Client-Konfiguration für den STS-3.
Beispiel Client-Konfiguration
{
"ClientId": "DocuSign",
"ClientSecrets": [
{
"value": "<Client-Secret>",
"description": "The SHA-512 Hash of the Secret's Value"
}
],
"AllowedGrantTypes": [
"client_credentials",
"delegation"
],
"AllowedScopes": [
"metatool",
"docusign-api"
]
},
- GrantTypes
delegation
undclient_credentials
sind notwendig - Das ClientSecret muss als SHA512-Hash hinterlegt werden
- Die Scopes "metatool" und "docusign-api" sind notwendig
- Die Client-ID muss
DocuSign
oderdocusign
heissen
Scope docusign-api
Der Scope "docusign-api" muss noch zusätzlich unter Scopes eingetragen werden:
"Scopes": {
"Api": [
"metatool",
"api",
"docusign-api"
],
},