Create a token
curl --request POST \
--url https://api.poix.io/v1/project/tokens \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "Dev token"
}
'import requests
url = "https://api.poix.io/v1/project/tokens"
payload = { "label": "Dev token" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({label: 'Dev token'})
};
fetch('https://api.poix.io/v1/project/tokens', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.poix.io/v1/project/tokens",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'label' => 'Dev token'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.poix.io/v1/project/tokens"
payload := strings.NewReader("{\n \"label\": \"Dev token\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.poix.io/v1/project/tokens")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"label\": \"Dev token\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.poix.io/v1/project/tokens")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"label\": \"Dev token\"\n}"
response = http.request(request)
puts response.read_body{
"id": "0659684b-7658-451d-bb1e-3c400e0b0950",
"token": "poix-OzhCUl37R4yswp2EOKBGE6bjZ6EIWHjxJ6H3JOERkmIAmeibAbQ"
}{
"success": false,
"error": {
"issues": [
{
"code": "unrecognized_keys",
"keys": [
"validations"
],
"path": [],
"message": "Unrecognized key(s) in object: 'validations'"
}
],
"name": "ZodError"
}
}{
"error": {
"message": "API key is invalid."
}
}Tokens
Create a token
Creates a new token for the project.
POST
/
v1
/
project
/
tokens
Create a token
curl --request POST \
--url https://api.poix.io/v1/project/tokens \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "Dev token"
}
'import requests
url = "https://api.poix.io/v1/project/tokens"
payload = { "label": "Dev token" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({label: 'Dev token'})
};
fetch('https://api.poix.io/v1/project/tokens', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.poix.io/v1/project/tokens",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'label' => 'Dev token'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.poix.io/v1/project/tokens"
payload := strings.NewReader("{\n \"label\": \"Dev token\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.poix.io/v1/project/tokens")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"label\": \"Dev token\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.poix.io/v1/project/tokens")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"label\": \"Dev token\"\n}"
response = http.request(request)
puts response.read_body{
"id": "0659684b-7658-451d-bb1e-3c400e0b0950",
"token": "poix-OzhCUl37R4yswp2EOKBGE6bjZ6EIWHjxJ6H3JOERkmIAmeibAbQ"
}{
"success": false,
"error": {
"issues": [
{
"code": "unrecognized_keys",
"keys": [
"validations"
],
"path": [],
"message": "Unrecognized key(s) in object: 'validations'"
}
],
"name": "ZodError"
}
}{
"error": {
"message": "API key is invalid."
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
⌘I