Criar board
curl --request POST \
--url https://api.notifique.dev/v1/pipelines/boardsconst options = {method: 'POST'};
fetch('https://api.notifique.dev/v1/pipelines/boards', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/pipelines/boards"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/pipelines/boards"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {}
}Pipelines
Criar board
POST
/
v1
/
pipelines
/
boards
Criar board
curl --request POST \
--url https://api.notifique.dev/v1/pipelines/boardsconst options = {method: 'POST'};
fetch('https://api.notifique.dev/v1/pipelines/boards', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/pipelines/boards"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/pipelines/boards"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {}
}Esta página foi útil?

