This endpoint returns status and metadata about an existing Changed Entity Export Job, which is specified by the unique identifier exportJobId
.
Response
Returns metadata about a ChangedEntityExportJob
object, if found.
{
"exportJobId": 12345,
"jobStatus": "Complete",
"dateChangedFrom": "2019-01-01T01:02:03+04:00",
"dateChangedTo": "2019-01-01T07:03:09+04:00",
"files": [
{
"downloadUrl": "https://www.example.com/some-unique-file-name.csv",
"dateExpired": "2019-01-31T15:05:54.2106809-04:00"
}
],
"message": "Finished processing export job",
"code": null,
"exportedRecordCount": 10500
}
Property | Type | Description |
---|---|---|
| long | Unique identifier for a Changed Entity Export Job |
| string |
|
| date | User-specified timestamp in the format |
| date | Server-generated timestamp in the format |
| array | Collection of file objects in the format [ { |
| string | Additional information about the job status |
| string |
|
| int | The number of records contained across all export files |
If the specified exportJobId
is inaccessible or does not exist, this endpoint will return an error with HTTP Status Code 404 Not Found
.