Re-run screening
curl --request POST \
--url https://assess.praxicraft.com/api/v1/public/applications/{application_id}/screening/rerun/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://assess.praxicraft.com/api/v1/public/applications/{application_id}/screening/rerun/"
payload = {}
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({})
};
fetch('https://assess.praxicraft.com/api/v1/public/applications/{application_id}/screening/rerun/', 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}/screening/rerun/';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
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/applications/{application_id}/screening/rerun/"
payload := strings.NewReader("{}")
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": "s1111111-1111-1111-1111-111111111111",
"application_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"status": "completed",
"l1_passed": true,
"l1_failed_rule_id": null,
"parse_json": {
"skills": [
"sql",
"python"
]
},
"parse_error": "",
"l3_score": "82.50",
"l3_breakdown": {
"must_have": 1,
"nice_to_have": 0.7
},
"ai_brief": "Strong SQL and warehouse experience.",
"ai_red_flags": [],
"ai_rationale": "",
"brief_error": "",
"auto_advanced": false,
"model_version": "v1",
"screened_at": "2026-09-02T11:22:00Z",
"updated_at": "2026-09-02T11:22:00Z"
}{
"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 — Screening
Re-run screening
Required scope:
screening:write
Re-runs screening. Optional action: rerun_parse, rerun_brief, rescore, or full (default). Requires screening:write.
Responses
| Status | Code | When |
|---|---|---|
200 | — | Updated screening result |
400 | VALIDATION_ERROR | Invalid action |
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}
/
screening
/
rerun
/
Re-run screening
curl --request POST \
--url https://assess.praxicraft.com/api/v1/public/applications/{application_id}/screening/rerun/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://assess.praxicraft.com/api/v1/public/applications/{application_id}/screening/rerun/"
payload = {}
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({})
};
fetch('https://assess.praxicraft.com/api/v1/public/applications/{application_id}/screening/rerun/', 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}/screening/rerun/';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
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/applications/{application_id}/screening/rerun/"
payload := strings.NewReader("{}")
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": "s1111111-1111-1111-1111-111111111111",
"application_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"status": "completed",
"l1_passed": true,
"l1_failed_rule_id": null,
"parse_json": {
"skills": [
"sql",
"python"
]
},
"parse_error": "",
"l3_score": "82.50",
"l3_breakdown": {
"must_have": 1,
"nice_to_have": 0.7
},
"ai_brief": "Strong SQL and warehouse experience.",
"ai_red_flags": [],
"ai_rationale": "",
"brief_error": "",
"auto_advanced": false,
"model_version": "v1",
"screened_at": "2026-09-02T11:22:00Z",
"updated_at": "2026-09-02T11:22:00Z"
}{
"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
Available options:
rerun_parse, rerun_brief, rescore, full Response
Available options:
pending, parsed, scored, briefed, failed Pattern:
^-?\d{0,4}(?:\.\d{0,2})?$Maximum string length:
64Last modified on September 5, 2026