Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 9.12 KB

createoauthapplicationrequestbody.md

File metadata and controls

12 lines (9 loc) · 9.12 KB

CreateOAuthApplicationRequestBody

Fields

Field Type Required Description Example
name str ✔️ The name of the new OAuth application.
Max length: 256
Example App
redirect_uris List[str] An array of redirect URIs of the new OAuth application
callback_url OptionalNullable[str] : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.

The callback URL of the new OAuth application
https://example.com/oauth/callback
scopes OptionalNullable[str] Define the allowed scopes for the new OAuth applications that dictate the user payload of the OAuth user info endpoint. Available scopes are profile, email, public_metadata, private_metadata. Provide the requested scopes as a string, separated by spaces. profile email public_metadata
public OptionalNullable[bool] If true, this client is public and you can use the Proof Key of Code Exchange (PKCE) flow. true