---
title: "Create a new contact"
method: POST
path: "/contacts"
tags: ["Contacts"]
---

# Create a new contact

`POST /contacts`

## Request body

- object
  - `email` string, email, required
  - `first_name` string
  - `last_name` string
  - `ip_address` string
  - `lists` integer[] — Array of list IDs to add the contact to
  - `contact_fields` object[]
    - `name` string
    - `value` string

## Response `200`

Contact created successfully

- Contact
  - `id` integer
  - `email` string, email, required
  - `first_name` string
  - `last_name` string
  - `ip_address` string
  - `unsubscribed_at` string, date-time, nullable
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `400` — Validation error
- `402` — Contact limit exceeded

---

[API](https://skmtc.net/sendfox/apis/sendfox-api.md) · [All operations](https://skmtc.net/sendfox/apis/sendfox-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sendfox/sendfox-api/revisions/c5728da3037f/schema)
