Update pipeline metadata or stages
curl --request PATCH \
--url https://assess.praxicraft.com/api/v1/public/pipelines/{slug}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"stages": [
{}
]
}
'import requests
url = "https://assess.praxicraft.com/api/v1/public/pipelines/{slug}/"
payload = {
"title": "<string>",
"description": "<string>",
"stages": [{}]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: '<string>', description: '<string>', stages: [{}]})
};
fetch('https://assess.praxicraft.com/api/v1/public/pipelines/{slug}/', 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/{slug}/';
const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: '<string>', description: '<string>', 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/{slug}/"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"stages\": [\n {}\n ]\n}")
req, _ := http.NewRequest("PATCH", 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": "p1111111-1111-1111-1111-111111111111",
"slug": "senior-de-hiring",
"title": "Senior Data Engineer Hiring",
"description": "Assessment, interview, and offer stages.",
"livemode": true,
"team_id": null,
"team_slug": null,
"created_at": "2026-08-01T09:00:00Z",
"stages": [
{
"id": "st111111-1111-1111-1111-111111111111",
"stage_type": "assessment",
"assessment_title": "Senior Backend Engineer Screen",
"assessment_slug": "senior-backend-screen",
"interview_template_id": null,
"interview_template_name": null,
"label": "Technical screen",
"order": 0,
"pass_score_override": null
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"message": "Invalid or revoked API Key.",
"code": "INVALID_API_KEY"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Public API — Pipelines
Update pipeline metadata or stages
Required scope:
pipelines:read
Update title / description, and optionally replace or append stages (append-only once enrollments exist — 409 STAGES_LOCKED / STAGE_IN_USE). Requires pipelines:write.
PATCH
/
api
/
v1
/
public
/
pipelines
/
{slug}
/
Update pipeline metadata or stages
curl --request PATCH \
--url https://assess.praxicraft.com/api/v1/public/pipelines/{slug}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"stages": [
{}
]
}
'import requests
url = "https://assess.praxicraft.com/api/v1/public/pipelines/{slug}/"
payload = {
"title": "<string>",
"description": "<string>",
"stages": [{}]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: '<string>', description: '<string>', stages: [{}]})
};
fetch('https://assess.praxicraft.com/api/v1/public/pipelines/{slug}/', 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/{slug}/';
const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: '<string>', description: '<string>', 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/{slug}/"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"stages\": [\n {}\n ]\n}")
req, _ := http.NewRequest("PATCH", 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": "p1111111-1111-1111-1111-111111111111",
"slug": "senior-de-hiring",
"title": "Senior Data Engineer Hiring",
"description": "Assessment, interview, and offer stages.",
"livemode": true,
"team_id": null,
"team_slug": null,
"created_at": "2026-08-01T09:00:00Z",
"stages": [
{
"id": "st111111-1111-1111-1111-111111111111",
"stage_type": "assessment",
"assessment_title": "Senior Backend Engineer Screen",
"assessment_slug": "senior-backend-screen",
"interview_template_id": null,
"interview_template_name": null,
"label": "Technical screen",
"order": 0,
"pass_score_override": null
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"message": "Invalid or revoked API Key.",
"code": "INVALID_API_KEY"
}
}{
"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.
Path Parameters
Body
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
Last modified on September 5, 2026