# List Accessible Entities List all entities accessible by the current API key. This endpoint returns the entities the API key holder can administer (write access), including entity IDs and names. This helps customers know which entity IDs they can use in the x-entity-id header when making API calls. Returns: ListAccessibleEntitiesResponse: List of accessible entities with their IDs and names Endpoint: GET /api-keys/accessible-entities Version: 1.0.0 Security: apiKeyAuth ## Response 200 fields (application/json): - `entities` (array, required) List of entities accessible by this API key Example: [{"access_type":"global_api_key","entity_id":"94a60dc7-93ab-4fed-8b2f-4008cdf7289b","entity_name":"AMITY","role":"Admin"},{"access_type":"global_api_key","entity_id":"123e4567-e89b-12d3-a456-426614174000","entity_name":"Acme Corp","role":"Viewer"},{"access_type":"entity_api_key","entity_id":"123e4567-e89b-12d3-a456-426614174111","entity_name":"Entity API Key Example"}] - `entities.entity_id` (string, required) The UUID of the entity - `entities.entity_name` (string, required) The name of the entity - `entities.access_type` (string, required) How the API key gains access to the entity Enum: "global_api_key", "entity_api_key" - `entities.role` (any) User role/permissions for this entity when applicable (only for global API keys)