Skip to main content

Overwriting at Refresh

coa CLI

Parameters can be set at the time of refresh by adding them after the --parameters flag.

coa refresh --parameters '{ "foo": "bar" }'

REST API

Parameters can be overwritten by adding a valid JSON object parameters to the body of a REST API request. More details in our API documentation in Start Job .

{
"runDetails": {
"environmentID": "4"
},
"userCredentials": {
"platformKind": "databricks",
"databricksClientSecret": "******",
"databricksClientID": "*****",
"databricksPath": "sql warehouse path",
"databricksAuthType": "OAuthM2M"
},
"parameters": {
"foo": "bar1"
}
}