LinkedIn · JSON Structure

Linkedin Marketing Campaigns Ad Account User Structure

AdAccountUser from LinkedIn API

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

AdAccountUser 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

account user role

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-marketing-campaigns-ad-account-user-structure.json",
  "name": "AdAccountUser",
  "description": "AdAccountUser from LinkedIn API",
  "type": "object",
  "properties": {
    "account": {
      "type": "string",
      "description": "URN of the sponsored account",
      "example": "urn:li:sponsoredAccount:123456"
    },
    "user": {
      "type": "string",
      "description": "URN of the person",
      "example": "urn:li:person:ABC123def"
    },
    "role": {
      "type": "string",
      "enum": [
        "ACCOUNT_BILLING_ADMIN",
        "ACCOUNT_MANAGER",
        "CAMPAIGN_MANAGER",
        "CREATIVE_MANAGER",
        "VIEWER"
      ],
      "description": "Role of the user in the account",
      "example": "VIEWER"
    }
  },
  "required": [
    "account",
    "user",
    "role"
  ]
}