Advance application
curl --request POST \
--url https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/';
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"candidate_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"email": "[email protected]",
"full_name": "Ada Lovelace",
"phone": "",
"status": "in_review",
"source": "careers",
"external_id": null,
"invitation_id": null,
"reject_reason": "",
"submitted_at": "2026-09-02T11:20:00Z",
"created_at": "2026-09-02T11:20:00Z",
"updated_at": "2026-09-02T11:22:00Z",
"screening": {
"status": "completed",
"l1_passed": true,
"l3_score": "82.50",
"l3_breakdown": {
"must_have": 1,
"nice_to_have": 0.7
},
"ai_brief": "Strong SQL and warehouse experience.",
"ai_red_flags": [],
"brief_error": "",
"auto_advanced": false,
"screened_at": "2026-09-02T11:22:00Z",
"parse_error": ""
},
"enrollment_id": null,
"answers": [
{
"id": "ans11111-1111-1111-1111-111111111111",
"field_id": "f1111111-1111-1111-1111-111111111111",
"field_key": "years_experience",
"field_label": "Years of experience",
"field_type": "number",
"value_text": "",
"value_number": "5.00",
"value_boolean": null,
"value_json": null
}
],
"attachments": [],
"events": []
}{
"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 — Applications
Advance application
Required scope:
applications:write
Advances an application to the next stage (and may invite to a linked assessment). Does not auto-advance every applicant who applies — call this deliberately.
Responses
| Status | Code | When |
|---|---|---|
200 | — | Advanced |
400 | VALIDATION_ERROR | Invalid transition |
404 | — | Application not found |
Authentication & rate limits (all endpoints)
| Status | Code | When |
|---|---|---|
401 | INVALID_API_KEY | Missing or invalid bearer token |
401 | EXPIRED_API_KEY | API key past its optional expires_at |
403 | INSUFFICIENT_SCOPE | API key lacks the required scope for this operation |
403 | IP_NOT_ALLOWED | Client IP is outside this key’s CIDR allowlist |
429 | RATE_LIMITED | Rate limit exceeded — plan-tiered reads/writes per organisation per hour |
POST
/
api
/
v1
/
public
/
applications
/
{application_id}
/
advance
/
Advance application
curl --request POST \
--url https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/';
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/applications/{application_id}/advance/"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"candidate_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"email": "[email protected]",
"full_name": "Ada Lovelace",
"phone": "",
"status": "in_review",
"source": "careers",
"external_id": null,
"invitation_id": null,
"reject_reason": "",
"submitted_at": "2026-09-02T11:20:00Z",
"created_at": "2026-09-02T11:20:00Z",
"updated_at": "2026-09-02T11:22:00Z",
"screening": {
"status": "completed",
"l1_passed": true,
"l3_score": "82.50",
"l3_breakdown": {
"must_have": 1,
"nice_to_have": 0.7
},
"ai_brief": "Strong SQL and warehouse experience.",
"ai_red_flags": [],
"brief_error": "",
"auto_advanced": false,
"screened_at": "2026-09-02T11:22:00Z",
"parse_error": ""
},
"enrollment_id": null,
"answers": [
{
"id": "ans11111-1111-1111-1111-111111111111",
"field_id": "f1111111-1111-1111-1111-111111111111",
"field_key": "years_experience",
"field_label": "Years of experience",
"field_type": "number",
"value_text": "",
"value_number": "5.00",
"value_boolean": null,
"value_json": null
}
],
"attachments": [],
"events": []
}{
"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
Response
Maximum string length:
254Maximum string length:
200Denormalized L3/L4 summary for ranked inbox (no N+1 parse blob).
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Maximum string length:
40Available options:
submitted, knockout_failed, on_hold, withdrawn, advanced, rejected, hired Available options:
public_careers, public_api, manual, import Maximum string length:
255Last modified on September 5, 2026