Skip to content

List Collection Exports

GET
/v1/group/exports
curl --request GET \
--url https://example.com/api/v1/group/exports \
--header 'Authorization: <Authorization>'

Returns export job rows for the caller’s group, newest first.

OK

Media type application/json
object
items
Array<object>
object
artifactPath
string
createdAt
string
error
string
groupId
string
id
string
kind

Kind is “export” for server-produced backup artifacts, “import” for user-uploaded restore zips. The lifecycle fields below behave the same for both.

string
progress
integer
sizeBytes
integer
status
string
updatedAt
string
Example generated
{
"items": [
{
"artifactPath": "example",
"createdAt": "example",
"error": "example",
"groupId": "example",
"id": "example",
"kind": "example",
"progress": 1,
"sizeBytes": 1,
"status": "example",
"updatedAt": "example"
}
]
}