permissions
Get My Tenants
List the tenants the authenticated user belongs to.
Use the returned ids as the tenant_id path parameter for the other /permissions/tenants/… endpoints.
Response
Returns a JSON list of tenants: [].
GET
Get My Tenants
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
200 - application/json
Successful Response
Previous
Get DatasetsGet all datasets accessible to the authenticated user.
This endpoint retrieves all datasets that the authenticated user has
read permissions for. The datasets are returned with their metadata
including ID, name, creation time, and owner information.
## Response
Returns a list of dataset objects containing:
- **id**: Unique dataset identifier
- **name**: Dataset name
- **created_at**: When the dataset was created
- **updated_at**: When the dataset was last updated
- **owner_id**: ID of the dataset owner
## Error Codes
- **418 I'm a teapot**: Error retrieving datasets
Next
Get My Tenants