LinkedIn · JSON Structure

Linkedin Marketing Campaigns Ad Account Create Request Structure

AdAccountCreateRequest from LinkedIn API

Type: object Properties: 9 Required: 4
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

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

Properties

currency name notifiedOnCampaignOptimization notifiedOnCreativeApproval notifiedOnCreativeRejection notifiedOnEndOfCampaign reference type test

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-create-request-structure.json",
  "name": "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"
  ]
}