creamy-oxygen-84393
08/28/2025, 12:22 PMchilly-king-10285
08/28/2025, 12:22 PMchilly-king-10285
08/28/2025, 12:22 PM"metadata": {"dynamically_registered": true}
. During the consent flow, you can then check for this property in the client object attached to the consent request. This approach is also mentioned as a "quick and dirty fix" in community discussions, with the suggestion that a proper field might be added in the future. The consent UI or backend can then check this metadata field to identify dynamically registered clients and apply any special logic as needed [Skip consent flow in default Ory Network UI](https://github.com/ory/network/issues/205). Example: When registering a client: json { "redirect_uris": ["<https://example.com/callback>"], "grant_types": ["authorization_code"], "metadata": { "dynamically_registered": true } }
Then, in your consent logic: js if (consentRequest.client.metadata?.dynamically_registered) { // Handle dynamically registered client }
Summary: There is no built-in flag, but using the metadata field is the recommended and supported way to tag and later identify dynamically registered clients during the consent flow [Skip consent flow in default Ory Network UI](https://github.com/ory/network/issues/205).creamy-oxygen-84393
08/28/2025, 12:24 PMchilly-king-10285
08/28/2025, 12:24 PMchilly-king-10285
08/28/2025, 12:24 PM