curl --request GET \
--url https://instance.prod.onboardapp.io/v1/risk-assessments/{assessment_token} \
--header 'X-API-KEY: <api-key>'{
"data": {
"token": "rsk_2m6n4p8q",
"case_token": "<string>",
"status": "Draft",
"overall_score": 50,
"tier": "High",
"dimensions": {
"customer": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
},
"geographic": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
},
"product_service": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
},
"transaction": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
}
},
"due_diligence_path": "SDD",
"review_frequency": "6 Months",
"override_tier": "High",
"override_justification": "<string>",
"approved_by": "<string>",
"approved_at": "2023-11-07T05:31:56Z",
"model_version": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Retrieve a specific risk assessment by token. Returns the full scoring breakdown across all four dimensions plus the overall score and tier.
curl --request GET \
--url https://instance.prod.onboardapp.io/v1/risk-assessments/{assessment_token} \
--header 'X-API-KEY: <api-key>'{
"data": {
"token": "rsk_2m6n4p8q",
"case_token": "<string>",
"status": "Draft",
"overall_score": 50,
"tier": "High",
"dimensions": {
"customer": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
},
"geographic": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
},
"product_service": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
},
"transaction": {
"score": 50,
"weight": 123,
"weighted_score": 123,
"factors": [
{
"name": "<string>",
"value": "<string>",
"score_contribution": 123
}
]
}
},
"due_diligence_path": "SDD",
"review_frequency": "6 Months",
"override_tier": "High",
"override_justification": "<string>",
"approved_by": "<string>",
"approved_at": "2023-11-07T05:31:56Z",
"model_version": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Project-scoped API key for server-to-server authentication. Obtain keys from the Zenoo dashboard under Project Settings > API Keys. Staging and production environments use separate keys.
Risk assessment token (e.g., rsk_abc123).
^rsk_[a-zA-Z0-9]+$Risk assessment details.
Standard response wrapper for all API endpoints. Contains the resource data and pagination metadata.