LinkedIn · JSON Structure

Linkedin Talent Recruiter System Connect Access Token Request Structure

Request body for obtaining access token

Type: object Properties: 3 Required: 3
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

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

Properties

grant_type client_id client_secret

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-request-structure.json",
  "name": "AccessTokenRequest",
  "description": "Request body for obtaining access token",
  "type": "object",
  "properties": {
    "grant_type": {
      "type": "string",
      "enum": [
        "client_credentials"
      ],
      "example": "client_credentials"
    },
    "client_id": {
      "type": "string",
      "description": "OAuth 2.0 client ID",
      "example": "78abc123def456"
    },
    "client_secret": {
      "type": "string",
      "description": "OAuth 2.0 client secret",
      "example": "secretXYZ789"
    }
  },
  "required": [
    "grant_type",
    "client_id",
    "client_secret"
  ]
}