Skip to main content
GET
/
orgs
/
{orgId}
/
compliance
/
dashboard
cURL
curl --request GET \
  --url https://api.useanima.sh/v1/orgs/{orgId}/compliance/dashboard \
  --header 'Authorization: Bearer <token>'
{
  "reports": {
    "total": 123,
    "byType": {},
    "byStatus": {},
    "recentReports": [
      {
        "id": "<string>",
        "type": "<string>",
        "title": "<string>",
        "status": "<string>",
        "createdAt": "<string>",
        "completedAt": "<string>"
      }
    ]
  },
  "dsars": {
    "total": 123,
    "byStatus": {},
    "byType": {},
    "overdue": 123,
    "averageResolutionDays": 123,
    "recentRequests": [
      {
        "id": "<string>",
        "type": "<string>",
        "status": "<string>",
        "subjectEmail": "<string>",
        "dueAt": "<string>",
        "createdAt": "<string>"
      }
    ]
  },
  "compliance": {
    "overallProgress": 50,
    "frameworkSummaries": [
      {
        "framework": "<string>",
        "totalControls": 123,
        "implementedCount": 123,
        "progress": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

JWT Bearer token obtained from authentication. Pass as: Authorization: Bearer

Path Parameters

orgId
string
required

Organization identifier

Response

200 - application/json

OK

Compliance dashboard data

reports
object
required
dsars
object
required
compliance
object
required