Salesforce · Schema

SuccessfulJWTBearerTokenFlow

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
access_token string
scope string
instance_url string
id string
token_type string
View JSON Schema on GitHub

JSON Schema

salesforce-successful-jwt-bearer-token-flow-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "example": "CAUQAA"
    },
    "scope": {
      "type": "string",
      "example": "example_value"
    },
    "instance_url": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "token_type": {
      "type": "string",
      "example": "CAUQAA"
    }
  },
  "required": [
    "access_token",
    "scope",
    "instance_url",
    "id",
    "token_type"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SuccessfulJWTBearerTokenFlow"
}