Create board
Endpoint
POST /v3/rooms/board
To join a board or get information about a board, it needs to be created first. Pass the board name and slug as arguments in your request.
Parameters
Key | Type | Description |
---|---|---|
name |
required (String) | a valid value of the board name. |
slug |
required (String) | a valid value of the board slug. |
closingMessage |
optional (String) | a valid value of the board description. |
hasWaitingList |
optional (Boolean) | a valid value of the board waiting list. |
Returns
Returns the board ID and redirect URL if the request was correct, and returns an error otherwise.
Ruby
require "uri"
require "json"
require "net/http"
url = URI("https://api.meedio.me/api/v3/rooms/board")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["API_SECRET"] = "meedio_secret"
request["API_KEY"] = "meedio_key"
request["Content-Type"] = "application/json"
request.body = JSON.dump({
"name": "meedio_name",
"slug": "meedio_slug"
})
response = http.request(request)
puts response.read_body
JavaScript
var axios = require("axios");
var data = JSON.stringify({
name: "meedio_name",
slug: "meedio_slug"
});
var config = {
method: "post",
url: "https://api.meedio.me/api/v3/rooms/board",
headers: {
API_SECRET: "meedio_secret",
API_KEY: "meedio_key",
"Content-Type": "application/json",
},
data: data,
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
Python
import requests
import json
url = "https://api.meedio.me/api/v3/rooms/board"
payload = json.dumps({
"name": "meedio_name",
"slug": "meedio_slug"
})
headers = {
'API_SECRET': 'meedio_secret',
'API_KEY': 'meedio_key',
'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
PHP
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.meedio.me/api/v3/rooms/board');
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->setConfig(array(
'follow_redirects' => TRUE
));
$request->setHeader(array(
'API_SECRET' => 'meedio_secret',
'API_KEY' => 'meedio_key',
'Content-Type' => 'application/json',
));
$request->setBody('{\n "name": "meedio_name",\n "slug": "meedio_slug"\n}');
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}
Go
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.meedio.me/api/v3/rooms/board"
method := "POST"
payload := strings.NewReader(`{
"name": "meedio_name",
"slug": "meedio_slug"
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("API_SECRET", "meedio_secret")
req.Header.Add("API_KEY", "meedio_key")
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}