Boltmesh Docs
OpenAPI

Get waitlist items

Get items of a waitlist project.

GET
/v1/waitlists/{id}/items

Authorization

Authorization

AuthorizationBearer <token>

Your team's root key.

In: header

Path Parameters

idstring

Unique ID

Pattern"^[a-zA-Z0-9_-]{21}$"
Length21 <= length <= 21

Query Parameters

search?string

Fuzzy search for email address, case insensitive.'

limitnumber

The maximum number of response data.

offsetnumber

The offset of response data starting from.

Response Body

OK

TypeScript Definitions

Use the response body type in TypeScript.

okboolean

The response status.

messagestring

The reponse messgae.

itemsarray<object>
totalnumber

The amount of the resource.

curl -X GET "https://api.boltmesh.com/v1/waitlists/stringstringstringstr/items?search=string&limit=0&offset=0"
fetch("https://api.boltmesh.com/v1/waitlists/stringstringstringstr/items?search=string&limit=0&offset=0")
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {
  url := "https://api.boltmesh.com/v1/waitlists/stringstringstringstr/items?search=string&limit=0&offset=0"

  req, _ := http.NewRequest("GET", url, nil)
  
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := ioutil.ReadAll(res.Body)

  fmt.Println(res)
  fmt.Println(string(body))
}
import requests

url = "https://api.boltmesh.com/v1/waitlists/stringstringstringstr/items?search=string&limit=0&offset=0"

response = requests.request("GET", url)

print(response.text)
{
  "ok": true,
  "message": "string",
  "items": [
    {
      "id": "string",
      "projectId": "string",
      "email": "string",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ],
  "total": 16
}