check_export_status
Monitor the progress of database exports in Optimizely DXP environments (Integration, Preproduction, Production) by verifying status using export ID and database name.
Instructions
Check the status of a database export
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
apiSecret | No | ||
databaseName | Yes | ||
environment | Yes | ||
exportId | Yes | ||
projectId | No | ||
projectName | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string"
},
"apiSecret": {
"type": "string"
},
"databaseName": {
"enum": [
"epicms",
"epicommerce"
],
"type": "string"
},
"environment": {
"enum": [
"Integration",
"Preproduction",
"Production"
],
"type": "string"
},
"exportId": {
"type": "string"
},
"projectId": {
"type": "string"
},
"projectName": {
"type": "string"
}
},
"required": [
"exportId",
"environment",
"databaseName"
],
"type": "object"
}