In OpenSearch Dashboard, where exactly the information about tenants, roles, and users is stored?

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser): 2.5.0

Describe the issue:
I am creating new tenants, custom roles, and internal users mapping to those roles. I am trying to find out where exactly these details are stored.

I saw that the API for Users, Roles and Tenants creation uses security plugin API as in the documentation and find that the host:port points to OpenSearch and not the OpenSearch Dashboard. If so, how can I find these information directly from the OpenSearch by using the index names.

I am unable to find the right index names to fetch directly from the OpenSearch.

curl --location --request GET ‘https://localhost:9200/_cat/indices?v
–header ‘Authorization: Basic XXXXX=’

Configuration:

Relevant Logs or Screenshots:

@Soorya Roles, users, and tenants objects are kept in .opendistro_security index. However, they are encoded and shouldn’t be accessed directly.

Instead, I recommend using official API documentation.