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

# Create a destination

> Configure a new destination to receive matched signals and enriched contacts from 1eye.

Creates a new destination in your workspace.

## Request

```http theme={null}
POST /v1/destinations
```

### Body parameters

<ParamField body="type" type="string" required>
  Destination type. One of `webhook`, `salesforce`, `hubspot`, or `slack`.
</ParamField>

<ParamField body="name" type="string" required>
  Human-readable name for the destination.
</ParamField>

<ParamField body="config" type="object" required>
  Type-specific configuration, such as a webhook URL or OAuth credentials.
</ParamField>

## Response

Returns the created destination object.

## Example

```bash cURL theme={null}
curl https://api.1eye.com/v1/destinations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "webhook",
    "name": "Ops webhook",
    "config": { "url": "https://example.com/hooks/1eye" }
  }'
```
