v8

OpenAPI 3.1.02026-08-033623795.0 MB
Entries

Retrieve entry

Retrieves the details of an existing waitlist entry.

Required permissions:

  • plan:waitlist:read
  • member:email:read
get/entries/{id}

Path parameters

idstring required
Example:entry_xxxxxxxxxxxx

The unique identifier of the waitlist entry to retrieve.

Response

A successful response

created_atstring date-time nullable required

The datetime the entry was created.

idstring required

The unique identifier for the entry.

status'drafted' | 'pending' | 'approved' | 'denied' | 'any' required

The status of an entry to a waitlist.

Example response

{
  "created_at": "2023-12-01T05:00:00.401Z",
  "custom_field_responses": [
    {
      "id": "cfrp_xxxxxxxxxxxxx"
    }
  ],
  "id": "entry_xxxxxxxxxxxx",
  "plan": {
    "id": "plan_xxxxxxxxxxxxx"
  },
  "product": {
    "id": "prod_xxxxxxxxxxxxx",
    "title": "Pickaxe Analytics"
  },
  "user": {
    "email": "john.doe@example.com",
    "id": "user_xxxxxxxxxxxxx",
    "name": "John Doe",
    "username": "johndoe42"
  }
}