LinkedIn · Schema

AdAccountUserCreateRequest

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
account string URN of the sponsored account
user string URN of the person
role string Role to assign
View JSON Schema on GitHub

JSON Schema

linkedin-adaccountusercreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdAccountUserCreateRequest",
  "title": "AdAccountUserCreateRequest",
  "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 to assign",
      "example": "VIEWER"
    }
  },
  "required": [
    "account",
    "user",
    "role"
  ]
}