Salesforce · JSON Structure

Salesforce Successful O Auth Username Password Login Structure

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

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

Properties

access_token instance_url id token_type issued_at signature

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

JSON Structure

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