Update an Application

put

/api/v2/applications/{id}/

Make a PUT or PATCH request to this resource to update this application. The following fields may be modified:

  • name: Name of this application. (string, required)
  • description: Optional description of this application. (string, default="")

  • client_type: Set to Public or Confidential depending on how secure the client device is. (choice, required)

    • confidential: Confidential
    • public: Public
  • redirect_uris: Allowed URIs list, space separated (string, default="")
  • authorization_grant_type: The Grant type the user must use for acquire tokens for this application. (choice, required)
    • authorization-code: Authorization code
    • password: Resource owner password-based
  • skip_authorization: Set True to skip authorization step for completely trusted applications. (boolean, default=False)
  • organization: Organization containing this application. (id, required)

For a PUT request, include all fields in the request.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : OAuth2Application
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : OAuth2Application
Type: object
Show Source
Back to Top