LinkedIn · Schema

AccessTokenResponse

Response containing access token

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
access_token string OAuth 2.0 access token
expires_in integer Token expiration time in seconds
token_type string Token type
View JSON Schema on GitHub

JSON Schema

linkedin-talent-recruiter-system-connect-access-token-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-talent-recruiter-system-connect-access-token-response-schema.json",
  "title": "AccessTokenResponse",
  "description": "Response containing access token",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "OAuth 2.0 access token",
      "example": "AQV8vPRN5zF9BxJ..."
    },
    "expires_in": {
      "type": "integer",
      "description": "Token expiration time in seconds",
      "example": 5184000
    },
    "token_type": {
      "type": "string",
      "description": "Token type",
      "example": "Bearer"
    }
  }
}