RegistryDashboard

Organizations

Organization management and profiles

5 endpoints

List user's organizations

Returns organizations the authenticated user belongs to.

Requires authentication
200List of organizations

Response fields

dataobject
GET/api/v1/orgs
curl -X GET "https://api.uluops.ai/api/v1/orgs" \
  -H "Authorization: Bearer $ULUOPS_TOKEN"
Response
{
  "data": {
    "organizations": []
  }
}

Get organization detail

Returns org detail including caller's role and member count. Requires org membership.

Requires authentication
slugrequiredstringpath

Organization URL slug

200Organization detail
403Not a member of this organization
404Resource not found

Response fields

dataobject

Organization detail with caller role and member count

GET/api/v1/orgs/{slug}
curl -X GET "https://api.uluops.ai/api/v1/orgs/example-value" \
  -H "Authorization: Bearer $ULUOPS_TOKEN"
Response
{
  "data": "..."
}

List organization members

Returns org members with their roles. Requires org membership.

Requires authentication
slugrequiredstringpath

Organization URL slug

200Organization members
403Not a member of this organization
404Resource not found

Response fields

dataobject
GET/api/v1/orgs/{slug}/members
curl -X GET "https://api.uluops.ai/api/v1/orgs/example-value/members" \
  -H "Authorization: Bearer $ULUOPS_TOKEN"
Response
{
  "data": {
    "members": []
  }
}

Organization definition usage counts

Returns definition counts by visibility for billing meters. Requires authentication.

Requires authentication
slugrequiredstringpath
200Usage counts
401Authentication required
404Resource not found

Response fields

dataobject
GET/api/v1/orgs/{slug}/usage
curl -X GET "https://api.uluops.ai/api/v1/orgs/example-value/usage" \
  -H "Authorization: Bearer $ULUOPS_TOKEN"
Response
{
  "data": {
    "private": 0,
    "public": 0,
    "total": 0
  }
}

Public organization profile

Returns public marketplace profile for an organization. No authentication required.

slugrequiredstringpath

Organization URL slug

200Public organization profile
404Resource not found

Response fields

dataobject

Public org profile for marketplace display

GET/api/v1/orgs/{slug}/profile
curl -X GET "https://api.uluops.ai/api/v1/orgs/example-value/profile"
Response
{
  "data": "..."
}