LinkedIn · Schema

AdAccountCreateRequest

AdAccountCreateRequest from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
currency string
name string
notifiedOnCampaignOptimization boolean
notifiedOnCreativeApproval boolean
notifiedOnCreativeRejection boolean
notifiedOnEndOfCampaign boolean
reference string
type string
test boolean
View JSON Schema on GitHub

JSON Schema

linkedin-marketing-campaigns-ad-account-create-request-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-marketing-campaigns-ad-account-create-request-schema.json",
  "title": "AdAccountCreateRequest",
  "description": "AdAccountCreateRequest from LinkedIn API",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "example": "USD"
    },
    "name": {
      "type": "string",
      "example": "XYZ Company"
    },
    "notifiedOnCampaignOptimization": {
      "type": "boolean",
      "example": true
    },
    "notifiedOnCreativeApproval": {
      "type": "boolean",
      "example": true
    },
    "notifiedOnCreativeRejection": {
      "type": "boolean",
      "example": true
    },
    "notifiedOnEndOfCampaign": {
      "type": "boolean",
      "example": true
    },
    "reference": {
      "type": "string",
      "example": "urn:li:organization:12345678"
    },
    "type": {
      "type": "string",
      "enum": [
        "BUSINESS",
        "ENTERPRISE"
      ],
      "example": "BUSINESS"
    },
    "test": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "currency",
    "name",
    "reference",
    "type"
  ]
}