Envestnet · Schema

ClientCredentialToken

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
expiresIn integer Time in seconds after which the issued accessToken expires.

Endpoints:
  • POST /auth/token
issuedAt string The date and time on which accessToken was created for the customer.

Endpoints:
  • POST /auth/token
accessToken string Access Token to access YSL 1.1 services.

Endpoints:
  • POST /auth/token
View JSON Schema on GitHub

JSON Schema

envestnet-clientcredentialtoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientCredentialToken",
  "title": "ClientCredentialToken",
  "type": "object",
  "properties": {
    "expiresIn": {
      "type": "integer",
      "description": "Time in seconds after which the issued accessToken expires.<br><br><b>Endpoints</b>:<ul><li>POST /auth/token</li></ul>",
      "format": "int32",
      "readOnly": true
    },
    "issuedAt": {
      "type": "string",
      "description": "The date and time on which accessToken was created for the customer.<br><br><b>Endpoints</b>:<ul><li>POST /auth/token</li></ul>",
      "readOnly": true
    },
    "accessToken": {
      "type": "string",
      "description": "Access Token to access YSL 1.1 services.<br><br><b>Endpoints</b>:<ul><li>POST /auth/token</li></ul>",
      "readOnly": true
    }
  }
}