Skip to main content
GET
/
organization
/
{organizationId}
/
integrations
/
overview
Get integration overview for organization
curl --request GET \
  --url https://us.cybedefend.com/organization/{organizationId}/integrations/overview \
  --header 'Authorization: Bearer <token>'
{
  "containerRegistry": {
    "total": 12,
    "byType": [
      {
        "type": "gitlab",
        "count": 5
      }
    ]
  },
  "github": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "installationId": 12345678,
    "userId": "550e8400-e29b-41d4-a716-446655440001",
    "organizationId": "550e8400-e29b-41d4-a716-446655440002",
    "createdAt": "2024-01-15T10:30:00.000Z",
    "updatedAt": "2024-01-15T10:30:00.000Z"
  },
  "gitlab": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "userId": "550e8400-e29b-41d4-a716-446655440001",
    "organizationId": "550e8400-e29b-41d4-a716-446655440002",
    "gitlabUserId": 987654,
    "gitlabGroupId": 123456,
    "createdAt": "2024-01-15T10:30:00.000Z",
    "updatedAt": "2024-01-15T10:30:00.000Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string<uuid>
required

CybeDefend organization ID

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Integration overview retrieved successfully

containerRegistry
object
required

Container registry statistics

github
object

GitHub App installation details (null if not installed)

gitlab
object

GitLab integration details (null if not connected)