Management API contract for /oidc/register

I am looking to create application using management API and also wants to setup below attribute while creating application.

Application Logo
Application Type
Token Endpoint Authentication Method
Application Login URI
Allowed Logout URLs

Can you please share whole contract of API which I can use to create application programmatically ?

Hi @dineshrawat78,

Welcome to the Auth0 Community!

Yes, most definitely. You will need to call the Management API Create a client endpoint to create an application.

Using this endpoint, you can create an application and specify the application logo, application type, token endpoint authentication method, application login URI and allowed logout URLs.

For example:

{
  "name": "",
  "logo_uri": "",
  "allowed_logout_urls": [
    ""
  ],
  "token_endpoint_auth_method": "",
  "app_type": "",
  "initiate_login_uri": "",
  //...other options redacted for brevity
}

Please let me know if you have any questions.

Thank you.