Salesforce · JSON Structure

Salesforce Successful Refresh Token Structure

Type: object Properties: 8 Required: 8
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

SuccessfulRefreshToken is a JSON Structure definition published by Salesforce, describing 8 properties, of which 8 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

access_token signature scope id_token instance_url id token_type issued_at

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "SuccessfulRefreshToken",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "signature": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    },
    "id_token": {
      "type": "string"
    },
    "instance_url": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "token_type": {
      "type": "string"
    },
    "issued_at": {
      "type": "string"
    }
  },
  "required": [
    "access_token",
    "signature",
    "scope",
    "id_token",
    "instance_url",
    "id",
    "token_type",
    "issued_at"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}