Salesforce · Schema

SuccessfulOAuthUsernamePasswordLogin

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

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

JSON Schema

salesforce-successful-o-auth-username-password-login-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "example": "CAUQAA"
    },
    "instance_url": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "token_type": {
      "type": "string",
      "example": "CAUQAA"
    },
    "issued_at": {
      "type": "string",
      "example": "2026-01-15T10:30:00Z"
    },
    "signature": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "access_token",
    "instance_url",
    "id",
    "token_type",
    "issued_at",
    "signature"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SuccessfulOAuthUsernamePasswordLogin"
}