OpenAPI
Get waitlist projects
Get waitlist projects.
Authorization
AuthorizationBearer <token>
Your team's root key.
In: header
Query Parameters
search?string
Fuzzy search for project name, 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.
projectsarray<object>
Waitlist projects
totalnumber
The amount of the resource.
curl -X GET "https://api.boltmesh.com/v1/waitlists?search=string&limit=0&offset=0"
fetch("https://api.boltmesh.com/v1/waitlists?search=string&limit=0&offset=0")
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.boltmesh.com/v1/waitlists?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?search=string&limit=0&offset=0"
response = requests.request("GET", url)
print(response.text)
{
"ok": true,
"message": "string",
"projects": [
{
"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
}
],
"total": 16
}