Skip to content

The Proxy Discovery endpoints enumerate proxy groups and services attached to a container, and return a merged debug view of the proxy configuration for a specific service. Use these endpoints to inspect which groups, services, hooks, and effective defaults are currently defined for a container’s proxy.

Returns all defined proxy group names along with the count of auth rules registered for each group. The response includes the current file_version and etag so callers can detect configuration drift between successive reads.

NameInTypeRequiredDescription
idpathstringYesContainer ID

This endpoint takes no request body.

Terminal window
curl -X GET "https://api.hoody.com/api/v1/containers/507f1f77bcf86cd799439012/proxy/groups" \
-H "Authorization: Bearer <token>"

Returns the deduplicated list of service names referenced by any permission cell or hook rule in the container’s proxy configuration. This is useful for validating that every expected service has been wired up before performing a targeted lookup.

GET /api/v1/containers/{id}/proxy/services

Section titled “GET /api/v1/containers/{id}/proxy/services”
NameInTypeRequiredDescription
idpathstringYesContainer ID

This endpoint takes no request body.

Terminal window
curl -X GET "https://api.hoody.com/api/v1/containers/507f1f77bcf86cd799439012/proxy/services" \
-H "Authorization: Bearer <token>"

Returns a debug-friendly merged view of the proxy configuration for a single service, including permissions_raw (per-group access cells for this service), registered hooks, the effective_default (one of allow or deny), and the is_reject_listed flag.

GET /api/v1/containers/{id}/proxy/services/{service}

Section titled “GET /api/v1/containers/{id}/proxy/services/{service}”
NameInTypeRequiredDescription
idpathstringYesContainer ID
servicepathstringYesService name

This endpoint takes no request body.

Terminal window
curl -X GET "https://api.hoody.com/api/v1/containers/507f1f77bcf86cd799439012/proxy/services/slack-api" \
-H "Authorization: Bearer <token>"