Skip to content

List the sync operations for an environment

GET
/api/v3/organizations/{organisation}/applications/{application}/environments/{environment}/sync/{type}
curl --request GET \
--url https://dashboard.quantcdn.io/api/v3/organizations/test-org/applications/test-app/environments/test-env/sync/database \
--header 'Authorization: Bearer <token>'
organisation
required
string

The organisation ID

Example
test-org
application
required
string

The application ID

Example
test-app
environment
required
string

The environment ID

Example
test-env
type
required
string
Allowed values: database filesystem

The sync type

The sync operations

Media typeapplication/json
Array<object>
object
syncId
string
syncType
string
sourceEnvironment
string
targetEnvironment
string
status
string
createdAt
string
completedAt
string
Examplegenerated
[
{
"syncId": "example",
"syncType": "example",
"sourceEnvironment": "example",
"targetEnvironment": "example",
"status": "example",
"createdAt": "example",
"completedAt": "example"
}
]