Boltmesh Docs
OpenAPI

Get a waitlist project

Get information of a waitlist project.

GET
/v1/waitlists/{id}

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

Response Body

OK

TypeScript Definitions

Use the response body type in TypeScript.

okboolean

The response status.

messagestring

The reponse messgae.

projectobject

Waitlist project detail

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

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

func main() {
  url := "https://api.boltmesh.com/v1/waitlists/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"

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

print(response.text)
{
  "ok": true,
  "message": "string",
  "project": {
    "id": "string",
    "name": "string",
    "description": "string",
    "teamId": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "createdWay": "dashboard",
    "discordEnabled": true,
    "discordMessageType": "channel_message",
    "discordChannelId": "string",
    "discordUserId": "string",
    "slackEnabled": true,
    "slackWorkspaceId": "string",
    "slackMessageType": "channel_message",
    "slackChannelId": "string",
    "slackUserId": "string",
    "total": 16
  }
}