> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Linkedin Ads Audiences Sync Audience Members: Inputs, Cost

> Replace a LinkedIn contact or company audience through the documented list-upload flow. Includes inputs, outputs, costs, and Deepline CLI examples.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=linkedin_ads_audiences_sync_audience_members:{"account_id":"{{account_id}}","audience_id":"{{audience_id}}","rows":"{{rows}}"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                    | Type                        | Required | Default      | Description                                                                                                                        |
| ----------------------- | --------------------------- | -------- | ------------ | ---------------------------------------------------------------------------------------------------------------------------------- |
| `payload.account_id`    | `string`                    | Yes      |              | LinkedIn sponsored account numeric ID. Deepline converts it to urn:li:sponsoredAccount:\{id}.                                      |
| `payload.audience_id`   | `string`                    | Yes      |              |                                                                                                                                    |
| `payload.audience_kind` | `"contacts" \| "companies"` | No       | `"contacts"` |                                                                                                                                    |
| `payload.mode`          | `"replace"`                 | No       | `"replace"`  | LinkedIn LIST\_UPLOAD audiences only support replace semantics. Append mode is not allowed.                                        |
| `payload.rows`          | `array`                     | Yes      |              | Audience member rows to upload. Most platforms accept much smaller per-request batches, so Deepline automatically chunks requests. |

### Allowed values

| Field                   | Allowed values          |
| ----------------------- | ----------------------- |
| `payload.audience_kind` | `contacts`, `companies` |
| `payload.mode`          | `replace`               |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "account_id": {
        "type": "string",
        "description": "LinkedIn sponsored account numeric ID. Deepline converts it to urn:li:sponsoredAccount:{id}.",
        "minLength": 1
      },
      "audience_id": {
        "type": "string",
        "minLength": 1
      },
      "audience_kind": {
        "type": "string",
        "default": "contacts",
        "enum": [
          "contacts",
          "companies"
        ]
      },
      "mode": {
        "type": "string",
        "description": "LinkedIn LIST_UPLOAD audiences only support replace semantics. Append mode is not allowed.",
        "default": "replace",
        "const": "replace"
      },
      "rows": {
        "type": "array",
        "description": "Audience member rows to upload. Most platforms accept much smaller per-request batches, so Deepline automatically chunks requests.",
        "minItems": 1,
        "maxItems": 300000,
        "items": {
          "type": "object",
          "description": "One audience member source row. Deepline normalizes and hashes supported identifiers before sending them to each destination.",
          "properties": {
            "email": {
              "type": "string",
              "minLength": 1
            },
            "email_sha256": {
              "type": "string",
              "minLength": 64,
              "maxLength": 64
            },
            "phone": {
              "type": "string",
              "minLength": 1
            },
            "phone_sha256": {
              "type": "string",
              "minLength": 64,
              "maxLength": 64
            },
            "first_name": {
              "type": "string",
              "minLength": 1
            },
            "last_name": {
              "type": "string",
              "minLength": 1
            },
            "country_code": {
              "type": "string",
              "minLength": 2,
              "maxLength": 2
            },
            "postal_code": {
              "type": "string",
              "minLength": 1
            },
            "company_name": {
              "type": "string",
              "minLength": 1
            },
            "title": {
              "type": "string",
              "minLength": 1
            },
            "company_domain": {
              "type": "string",
              "minLength": 1
            },
            "company_website": {
              "type": "string",
              "minLength": 1
            },
            "company_linkedin_url": {
              "type": "string",
              "minLength": 1
            },
            "person_linkedin_url": {
              "type": "string",
              "minLength": 1
            },
            "external_id": {
              "type": "string",
              "minLength": 1
            }
          },
          "additionalProperties": false
        }
      }
    },
    "required": [
      "account_id",
      "audience_id",
      "rows"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description |
| ------------- | -------- | -------- | ------- | ----------- |
| `result.data` | `object` | Yes      |         |             |
| `result.meta` | `record` | No       |         |             |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {
        "type": "object",
        "properties": {
          "audience_id": {
            "type": "string"
          },
          "mode": {
            "type": "string",
            "enum": [
              "append",
              "replace"
            ]
          },
          "uploaded_count": {
            "type": "integer",
            "minimum": 0
          },
          "invalid_count": {
            "type": "integer",
            "minimum": 0
          },
          "invalid_rows": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "originalIndex": {
                  "type": "integer",
                  "minimum": 0
                },
                "reason": {
                  "type": "string"
                }
              },
              "required": [
                "originalIndex",
                "reason"
              ],
              "additionalProperties": false
            }
          },
          "request_ids": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "audience_id",
          "mode",
          "uploaded_count",
          "invalid_count",
          "invalid_rows",
          "request_ids"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "additionalProperties": {}
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute linkedin_ads_audiences_sync_audience_members --payload '{
  "account_id": "string",
  "audience_id": "string",
  "rows": "array"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Billing mode: `post_deduct`.
