API

Get waitlist entry

Get a waitlist entry by ID.

GET/v1/marketplace/waitlist_entries/{waitlist_entry_id}

Authorization

Marketplace-Authentication

Authorization<token>

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

In: header

Path Parameters

waitlist_entry_id*string

Waitlist Entry ID

Query Parameters

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

Response Body

application/json

application/json

curl -X GET "https://api.noona.is/v1/marketplace/waitlist_entries/string"
{
  "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"
}
{
  "type": "generic_error",
  "message": "Time slot is not available."
}