Vigilfield Docs
API referenceAccess

`GET /access` — who can access a resource (teams + actions), plus whether a resource policy applies. Admin-gated.

GET/access

Query Parameters

resource_type*string

ResourceKind token (tables, databases, …)

resource_id*string

The resource id

owner_team_id?string

The resource's owning team, if any

Response Body

application/json

curl -X GET "https://example.com/access?resource_type=string&resource_id=string"
{  "bind_owner": true,  "has_policy": true,  "teams": [    {      "actions": [        "string"      ],      "team_id": "string"    }  ]}