LinkedIn · JSON Structure

Linkedin Talent Recruiter System Connect Access Token Response Structure

Response containing access token

Type: object Properties: 3
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

AccessTokenResponse is a JSON Structure definition published by LinkedIn, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

access_token expires_in token_type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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