Update the application properties on the server
put
                    /mftapp/rest/v1/artifacts/appProperties
Updates the application properties on the server.
                Request
Supported Media Types
                - application/json
 
Header Parameters
                - 
                        location: string
                        
                        Relative URL of the update SFTP properties event.
 
Root Schema : schema
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            calloutDirectory(optional): 
            string
            
 - 
            controlDirectory(optional): 
            string
            
 - 
            externalAddress(optional): 
            string
            
 - 
            externalFtp(optional): 
            integer
            
 - 
            externalFtps(optional): 
            integer
            
 - 
            externalSftp(optional): 
            integer
            
 - 
            generateChecksum(optional): 
            boolean
            Whether to generate checksum.
 - 
            inboundDatasource(optional): 
            string
            
 - 
            instanceProcessors(optional): 
            integer
            
 - 
            internalAddress(optional): 
            string
            
 - 
            internalFtp(optional): 
            integer
            
 - 
            internalFtps(optional): 
            integer
            
 - 
            internalSftp(optional): 
            integer
            
 - 
            outboundDatasource(optional): 
            string
            
 - 
            payloadStorageDirectory(optional): 
            string
            Directory where the payload is stored.
 - 
            sourceProcessors(optional): 
            integer
            
 - 
            storeInlinePayload(optional): 
            string
            
 - 
            storeReferencePayload(optional): 
            boolean
            
 - 
            targetProcessors(optional): 
            integer
            
 
Response
Supported Media Types
                - application/json
 
200 Response
App properties were updated.
                
                
                500 Response
Root Schema : schema
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            errorCode(optional): 
            string
            The error code that Oracle Managed File Transfer returns.
 - 
            errorKey(optional): 
            string
            The error key that Oracle Managed File Transfer returns.
 - 
            errorMessage(optional): 
            string
            A message describing the error that Oracle Managed File Transfer returns.
 
Example Response (application/json)
                    {
    "errorCode":"MFT-6036",
    "errorKey":"MFT_CSF_KEY_DOES_NOT_EXIST_EXCEPTION",
    "errorMessage":"Key not found for the given key alias aliasName in credential store."
}
                    
                    Examples
   The following example shows how to update the application properties on the server by submitting a PUT request on the REST resource using cURL.
   
 
 curl -i -X PUT -u <username>:<password> -H "Content-type: application/json" -d '{"internalFtp":21, "internalAddress":"127.0.0.1",  "externalFtp":21,   "sourceProcessors":1, "instanceProcessors":2, "storeReferencePayload":true, "payloadStorageDirectory":"/.../user_projects/domains/base_domain/mft/storage", "storeInlinePayload":"fileSystem", "externalSftp":22, "targetProcessors":3, "generateChecksum":true, "externalFtps":990, "internalFtps":990, "internalSftp":22, "calloutDirectory":"/.../user_projects/domains/base_domain/mft/callouts", "externalAddress":"127.0.0.1"}' http://host:port/mftapp/rest/v1/artifacts/appProperties