Endpoint
GET /v1/projects/{projectId}
Request
curl -X GET "http://client-omni-api.argosidentity.com/v1/projects/{projectId}" \
-H "x-api-key: your-api-key-here"
Response
Unique project identifier (e.g., proj_nu1t9v31uj1p)
Project status: SERVICE, TRIAL, or CLOSED
List of workflows associated with this project
Project owner information
{
"success": true,
"data": {
"id": "proj_nu1t9v31uj1p",
"name": "Compliance Production",
"status": "SERVICE",
"workflows": [
{
"id": "wf_nowap27l46b2",
"name": "KYB Business Verification",
"createdAt": "2026-01-15T09:00:00Z"
}
],
"owner": {
"id": "user_abc123",
"email": "admin@company.com"
},
"createdAt": "2026-01-10T08:00:00Z"
}
}