Skip to main content

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

id
string
required
Unique project identifier (e.g., proj_nu1t9v31uj1p)
name
string
required
Project name
status
string
required
Project status: SERVICE, TRIAL, or CLOSED
workflows
array
required
List of workflows associated with this project
owner
object
required
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"
  }
}