Boltmesh Docs
OpenAPI

Get a waitlist item

Get information of a waitlist item.

GET
/v1/waitlists/{id}/items/{itemId}

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
itemIdstring

Unique ID

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

Response Body

OK

TypeScript Definitions

Use the response body type in TypeScript.

okboolean

The response status.

messagestring

The reponse messgae.

itemobject
curl -X GET "https://api.boltmesh.com/v1/waitlists/stringstringstringstr/items/stringstringstringstr"
fetch("https://api.boltmesh.com/v1/waitlists/stringstringstringstr/items/stringstringstringstr")
package main

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

func main() {
  url := "https://api.boltmesh.com/v1/waitlists/stringstringstringstr/items/stringstringstringstr"

  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/stringstringstringstr"

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

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