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

# Attributionen im Bulk erstellen

Importiere bis zu 1000 Attributionsantworten auf einmal. Nutze das für die Migration historischer Daten aus deinem CRM oder Analytics-Tool.

Benötigt den `write`-Scope auf deinem API-Key.

<ParamField path="projectId" type="string" required>
  Die Projekt-ID.
</ParamField>

<ParamField body="responses" type="array" required>
  Array von Attributionsantworten (max. 1000). Jeder Eintrag benötigt mindestens `channelId`.
</ParamField>

<RequestExample>
  ```bash cURL theme={"system"}
  curl --request POST \
    --url https://api.finseo.ai/v1/projects/PROJECT_ID/attribution/bulk \
    --header 'Authorization: Bearer sk_live_xxxxxxxx' \
    --header 'Content-Type: application/json' \
    --data '{
      "responses": [
        {
          "channelId": "ai_search",
          "respondentEmail": "jane@company.com",
          "dealValue": 12000
        },
        {
          "channelId": "google_search",
          "respondentEmail": "john@corp.com",
          "dealValue": 8500
        },
        {
          "channelId": "social_media",
          "respondentEmail": "alex@startup.io"
        }
      ]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={"system"}
  {
    "data": {
      "imported": 3
    }
  }
  ```
</ResponseExample>
