API

List waitlist entries

Lists all waitlist entries for user.

GET/v1/marketplace/waitlist_entries

Authorization

Marketplace-Authentication

Authorization<token>

The Noona Marketplace API uses an Authorization header with JWT Bearer tokens to authenticate marketplace users.

In: header

Query Parameters

filter?
select?array<string>
expand?array<string>

Response Body

application/json

curl -X GET "https://api.noona.is/v1/marketplace/waitlist_entries"
[
  {
    "id": "7awdXwZoedakjad37a",
    "name": "John Doe",
    "email": "[email protected]",
    "phone_country_code": "354",
    "phone_number": "12345678",
    "company": "string",
    "event_types": [
      "string"
    ],
    "employee": "string",
    "resource": "string",
    "number_of_guests": 1,
    "notes": "I can only make it after noon",
    "preferred_times": [
      {
        "date": "2024-10-08",
        "times": [
          "11:00"
        ]
      }
    ],
    "expires_at": "2024-10-08T11:00:00Z",
    "created_at": "2019-08-24T14:15:22Z",
    "updated_at": "2019-08-24T14:15:22Z"
  }
]