v1

latestOpenAPI 3.0.32026-07-24214879985.1 KB
Application OAuth Clients

This endpoint allows you to create a new OAuth client for the given application. A maximum of 250 oauth client credentials can be created under the application.

post/applications/{applicationId}/oauthClients

Request body

OR

Example request

{
  "name": "client-name",
  "type": "confidential",
  "redirectUris": [
    "https://google.co.in/",
    "https://google.nl/"
  ],
  "loginUris": [
    "https://sample.com/login",
    "https://sample.nl/login"
  ],
  "authorizationType": "user"
}

Response

Created

OR

Example response

{
  "id": "e005968e714911eda1eb0242ac120002",
  "secret": "NnjRRTOYAlGpqedN65OLf4sPMFH8kGbG",
  "name": "client-name",
  "type": "confidential",
  "redirectUris": [
    "https://google.co.in/",
    "https://google.nl/"
  ],
  "loginUris": [
    "https://sample.com/login",
    "https://sample.nl/login"
  ],
  "authorizationType": "user",
  "scopes": [
    "vms.all"
  ]
}