---
title: "Entry Created"
method: POST
path: "entry.created"
tags: ["Entries"]
---

# Entry Created

`POST entry.created` (webhook)

Sent when a entry is created

Required permissions:
 - `plan:waitlist:read`
 - `member:email:read`
 - `webhook_receive:entries`

## Headers

- `webhook-id` string, required — A unique identifier for this webhook request
- `webhook-signature` string, required — The signature of the webhook request with the webhook version prepended
- `webhook-timestamp` string, required — The timestamp in seconds since the Unix epoch that the webhook was sent at on the server

## Payload

- object
  - `api_version` 'v1', required — The API version for this webhook
  - `api_version_date` string, nullable, required — The dated API version (Api-Version-Date) the payload is serialized to
  - `company_id` string, nullable — The account ID that this webhook event is associated with
  - `data` Entry, required — An entry represents a user's signup for a waitlisted plan.
    - `created_at` string, date-time, nullable, required — The datetime the entry was created.
    - `custom_field_responses` object[], nullable, required — The list of responses collected from the user when submitting their waitlist entry.
      - `answer` string, required — The response a user gave to the specific question or field.
      - `id` string, required — The unique identifier for the custom field response.
      - `question` string, required — The question asked by the custom field
    - `id` string, required — The unique identifier for the entry.
    - `plan` object, nullable, required — The waitlisted plan that this entry is a signup for.
      - `id` string, required — The unique identifier for the plan.
    - `product` object, nullable, required — The product associated with this entry's waitlisted plan. Null if the plan is not tied to a product.
      - `id` string, required — The unique identifier for the product.
      - `title` string, required — The display name of the product shown to customers on the product page and in search results.
    - `status` 'drafted' | 'pending' | 'approved' | 'denied' | 'any', required — The status of an entry to a waitlist.
    - `user` object, required — The user who submitted this waitlist entry.
      - `email` string, nullable, required — The user's email address. Requires the member:email:read permission to access. Null if not authorized.
      - `id` string, required — The unique identifier for the user.
      - `name` string, nullable, required — The user's display name shown on their public profile.
      - `username` string, required — The user's unique username shown on their public profile.
  - `id` string, required — A unique ID for every single webhook request
  - `timestamp` string, date-time, required — The timestamp in ISO 8601 format that the webhook was sent at on the server
  - `type` 'entry.created', required — The webhook event type

## Acknowledgement `200`

Return a 200 status to indicate that the data was received successfully

---

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