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(required): string
Relative URL of the update SFTP properties event.
Root Schema : schema
Type:
Show Source
object
-
calloutDirectory:
string
-
controlDirectory:
string
-
externalAddress:
string
-
externalFtp:
integer
-
externalFtps:
integer
-
externalSftp:
integer
-
generateChecksum:
boolean
Whether to generate checksum.
-
inboundDatasource:
string
-
instanceProcessors:
integer
-
internalAddress:
string
-
internalFtp:
integer
-
internalFtps:
integer
-
internalSftp:
integer
-
outboundDatasource:
string
-
payloadStorageDirectory:
string
Directory where the payload is stored.
-
sourceProcessors:
integer
-
storeInlinePayload:
string
-
storeReferencePayload:
boolean
-
targetProcessors:
integer
Response
Supported Media Types
- application/json
200 Response
App properties were updated.
500 Response
Root Schema : schema
Type:
Show Source
object
-
errorCode:
string
The error code that Oracle Managed File Transfer returns.
-
errorKey:
string
The error key that Oracle Managed File Transfer returns.
-
errorMessage:
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