Create pipeline with stages
curl --request POST \
--url https://assess.praxicraft.com/api/v1/public/pipelines/create/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"stages": [
{}
]
}
'import requests
url = "https://assess.praxicraft.com/api/v1/public/pipelines/create/"
payload = {
"title": "<string>",
"description": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"stages": [{}]
}
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({
title: '<string>',
description: '<string>',
team_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
stages: [{}]
})
};
fetch('https://assess.praxicraft.com/api/v1/public/pipelines/create/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/pipelines/create/';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
description: '<string>',
team_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
stages: [{}]
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/pipelines/create/"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"team_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"stages\": [\n {}\n ]\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))
}{
"id": "<string>",
"slug": "<string>",
"title": "<string>",
"description": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"team_slug": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"stages": [
{
"id": "<string>",
"stage_type": "<string>",
"assessment_title": "<string>",
"assessment_slug": "<string>",
"interview_template_id": "<string>",
"interview_template_name": "<string>",
"label": "<string>",
"order": 123,
"pass_score_override": 123
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Public API — Pipelines
Create pipeline with stages
Create a linear hiring pipeline (Growth+). Body: title, optional description, team_id, and stages (assessment / interview / manual_review). Livemode follows the API key. Scope: pipelines:write.
POST
/
api
/
v1
/
public
/
pipelines
/
create
/
Create pipeline with stages
curl --request POST \
--url https://assess.praxicraft.com/api/v1/public/pipelines/create/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"stages": [
{}
]
}
'import requests
url = "https://assess.praxicraft.com/api/v1/public/pipelines/create/"
payload = {
"title": "<string>",
"description": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"stages": [{}]
}
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({
title: '<string>',
description: '<string>',
team_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
stages: [{}]
})
};
fetch('https://assess.praxicraft.com/api/v1/public/pipelines/create/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/pipelines/create/';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
description: '<string>',
team_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
stages: [{}]
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/pipelines/create/"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"team_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"stages\": [\n {}\n ]\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))
}{
"id": "<string>",
"slug": "<string>",
"title": "<string>",
"description": "<string>",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"team_slug": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"stages": [
{
"id": "<string>",
"stage_type": "<string>",
"assessment_title": "<string>",
"assessment_slug": "<string>",
"interview_template_id": "<string>",
"interview_template_name": "<string>",
"label": "<string>",
"order": 123,
"pass_score_override": 123
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Authorizations
Organisation API key created in Assess → Developer → API Keys. Format: Bearer ct_live_<your-key> (live) or Bearer ct_test_<your-key> (test). Optional per-key CIDR allowlists return 403 IP_NOT_ALLOWED.
Body
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
Last modified on August 24, 2026
⌘I