Hello @happy-eve-92047
Securing your administrative API is crucial to prevent unauthorized access to sensitive data.
Ory's APIs, including the administrative API, do not come with integrated access control. This means that all requests sent to their APIs are considered authenticated, authorized, and will be executed. Therefore, it's important to implement additional security measures.
Here are some steps you can take to secure your administrative API:
1. Use an API Gateway or Authorization Proxy: You can use an API Gateway or Authorization Proxy to secure your administrative endpoints. This can help you manage who has access to these endpoints and under what conditions. For example, you can restrict access to certain IP addresses or require specific authentication tokens.
2. Use Ory Oathkeeper: Ory Oathkeeper is an Identity & Access Proxy (IAP) and Access Control Decision API that authenticates, authorizes, and mutates incoming HTTP(s) requests. It's a good option to protect access to Ory's APIs.
3. ...