How can application information be obtained from an authRequest?
I am building my own login UI and would like to display the application name on the login page during an OIDC authentication flow.
According to the API documentation, there is a GET /v2/oidc/auth_requests/{authRequest} endpoint. However, it only returns the client ID, while retrieving application details requires an application ID.
One possible approach would be to call
POST "/zitadel.application.v2.ApplicationService/ListApplications" endpoint
and iterate over all applications to find the one associated with the "client ID". However, this does not seem like the correct solution
According to the API documentation, there is a GET /v2/oidc/auth_requests/{authRequest} endpoint. However, it only returns the client ID, while retrieving application details requires an application ID.
One possible approach would be to call
POST "/zitadel.application.v2.ApplicationService/ListApplications" endpoint
and iterate over all applications to find the one associated with the "client ID". However, this does not seem like the correct solution