Create an Application for an Organization
post
                    /api/v2/organizations/{id}/applications/
Make a POST request to this resource with the following application fields to create a new application associated with this organization.
- 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)
Request
Supported Media Types
                - application/json
Path Parameters
                
                
                
                
                
                
                Root Schema : schema
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            authorization_grant_type: 
            string
            The Grant type the user must use for acquire tokens for this application.
- 
            client_type: 
            string
            Set to Public or Confidential depending on how secure the client device is.
- 
            description(optional): 
            string
            
- 
            name: 
            string
            
- 
            organization: 
            integer
            Organization containing this application.
- 
            redirect_uris(optional): 
            string
            Allowed URIs list, space separated
- 
            skip_authorization(optional): 
            boolean
            Set True to skip authorization step for completely trusted applications.