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

# Create Partner Contact

> Create a new contact for a partner company

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://app.journeybee.io/api/v1/contacts" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json" \
    -d '{"email": "contact@partner.com", "first_name": "Jane", "last_name": "Doe", "partnership_id": 456}'
  ```
</CodeGroup>

## Request Body Schema

<ParamField body="email" type="string" required>
  Contact email address
</ParamField>

<ParamField body="first_name" type="string">
  Contact first name
</ParamField>

<ParamField body="last_name" type="string">
  Contact last name
</ParamField>

<ParamField body="position" type="string">
  Job title or position
</ParamField>

<ParamField body="phone_number" type="string">
  Contact phone number
</ParamField>

<ParamField body="partnership_id" type="number" required>
  Associated partnership ID
</ParamField>

<ParamField body="tags" type="array">
  Array of tag IDs to assign
</ParamField>

## Response Schema

<ResponseField name="id" type="number">
  The created contact ID
</ResponseField>

<ResponseField name="uuid" type="string">
  The created contact UUID
</ResponseField>

## Notes

* Requires API key with `write_access` permission
* Contact must be associated with an existing partnership
* Helps maintain relationship management with partner companies
