---
title: "Retrieve entry"
method: GET
path: "/entries/{id}"
tags: ["Entries"]
---

# Retrieve entry

`GET /entries/{id}`

Retrieves the details of an existing waitlist entry.

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

## Path parameters

- `id` string, required

## Response `200`

A successful response

- Entry — 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.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

[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/866821546d67/schema)
