Organizations
Organization management and profiles
5 endpoints
List user's organizations
Returns organizations the authenticated user belongs to.
Requires authentication
Responses
200List of organizations
Response fields
dataobjectGET
/api/v1/orgscurl -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
Parameters
slugrequiredstringpathOrganization URL slug
Responses
200Organization detail
403Not a member of this organization
404Resource not found
Response fields
dataobjectOrganization 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
Parameters
slugrequiredstringpathOrganization URL slug
Responses
200Organization members
403Not a member of this organization
404Resource not found
Response fields
dataobjectGET
/api/v1/orgs/{slug}/memberscurl -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
Parameters
slugrequiredstringpathResponses
200Usage counts
401Authentication required
404Resource not found
Response fields
dataobjectGET
/api/v1/orgs/{slug}/usagecurl -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.
Parameters
slugrequiredstringpathOrganization URL slug
Responses
200Public organization profile
404Resource not found
Response fields
dataobjectPublic org profile for marketplace display
GET
/api/v1/orgs/{slug}/profilecurl -X GET "https://api.uluops.ai/api/v1/orgs/example-value/profile"Response
{
"data": "..."
}