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

# Add Customer Data

> Adds customer account information to a live conversation.

> Deprecated: use `/call/add_tags` endpoint instead.

Adds customer account information to a live conversation.

## Path Parameters

<ParamField path="conversation_id" type="string" required>
  The unique identifier for the conversation
</ParamField>

## Request Body

<ParamField body="account_id" type="string" optional>
  The customer's account identifier. If null, no action is taken.
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates if the customer data was successfully added
</ResponseField>

## Error Responses

<ResponseField name="error" type="string">
  Error message when no data is provided or conversation is not found
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST 'https://app.reddy.io/api/v1/live/12345/data/customer' \
    -H 'Authorization: Bearer your_api_key' \
    -H 'Content-Type: application/json' \
    -d '{
      "account_id": "ACCT-12345"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>
