zitadel_create_oidc_app
Create an OIDC application in Zitadel to enable user authentication. Configure redirect URIs, response types, and grant types for secure login integration.
Instructions
Create a new OIDC application in a Zitadel project. Returns the Client ID (and Client Secret for confidential clients). Configure redirect URIs, response types, and grant types.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | The project ID to create the app in | |
| name | Yes | Application name | |
| redirectUris | Yes | OAuth redirect URIs (e.g., ["https://myapp.example.com/api/auth/callback/zitadel"]) | |
| postLogoutRedirectUris | No | Post-logout redirect URIs (optional) | |
| appType | No | Application type (default: OIDC_APP_TYPE_WEB) | |
| authMethodType | No | Auth method. Use NONE for PKCE public clients (default: OIDC_AUTH_METHOD_TYPE_NONE) | |
| devMode | No | Enable dev mode to allow http:// redirect URIs (default: false) |