---
title: "Contact created"
method: POST
path: "contactCreated"
tags: ["Webhooks"]
---

# Contact created

`POST contactCreated` (webhook)

Sent when a new contact is created in your audience. Contains a `contactIdentity` object and a full `contact` object with all of the new contact's properties (including custom properties). When double opt-in is enabled, contact webhooks do not fire until the contact is confirmed; `contact.created` only fires for form-created contacts once they confirm their subscription. `optInStatus` will never be `"pending"` or `"rejected"` for this event.

## Headers

- `webhook-id` string, required
- `webhook-timestamp` string, required
- `webhook-signature` string, required

## Payload

- WebhookContactCreatedPayload
  - `eventName` 'contact.created', required
  - `eventTime` integer, required — Unix timestamp in seconds.
  - `webhookSchemaVersion` '1.0.0', required
  - `contactIdentity` WebhookContactIdentity, required
    - `id` string, required
    - `email` string, required
    - `userId` string, nullable, required
  - `contact` WebhookContact, required — Full contact object, including custom properties.
    - `id` string, required
    - `email` string, required
    - `firstName` string, nullable, required
    - `lastName` string, nullable, required
    - `source` string, required
    - `subscribed` boolean, required
    - `userGroup` string, required
    - `userId` string, nullable, required
    - `notes` string, nullable
    - `mailingLists` object, required — An object of mailing list IDs and boolean subscription statuses.
    - `optInStatus` 'accepted' | 'pending' | 'rejected' | 'null', nullable, required — Double opt-in status.

## Acknowledgement `200`

Webhook received successfully. Return any 2xx status code to acknowledge delivery.

---

[API](https://skmtc.net/loops/apis/loops-openapi-spec.md) · [All operations](https://skmtc.net/loops/apis/loops-openapi-spec/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/loops/loops-openapi-spec/revisions/9cc087257f0d/schema)
