# Export Completed

> The export request is done.

Once the export request is done, a completion webhook is fired. When the webhook reaches your servers, please verify that all the requested data was copied correctly. To check that the commands finished successfully, check:
1. The `completed` flag should be equal to `true`. 
2. Each `task.isHealthy` should be equal to `true`.
3. Each `task.httpStatusCode` should be equal to `2xx` (200, 204, …).

<ParamField path="completed" type="boolean">
  This flag gives an indication of whether the scan was completed without internal errors on the Copyleaks side. Possible values: true (Completed successfully), false (Error)
</ParamField>
<ParamField path="developerPayload" type="string">
  The developer payload that was provided in the submit method.
</ParamField>
<ParamField path="tasks" type="array[object]">
  A List of completed tasks.
  <Expandable title="properties">
    <ParamField path="endpoint" type="string<uri>">
      The endpoint address of the export task.
    </ParamField>
    <ParamField path="isHealthy" type="boolean">
      This flag gives an indication whether the scan was completed without internal errors on the Copyleaks side.
    </ParamField>
    <ParamField path="httpStatusCode" type="integer">
      The status code reported by the customer servers. If the `tasks.isHealthy` is equal to false - this field will be null.
    </ParamField>
  </Expandable>
</ParamField>
## Example

```json
{
  "completed": true,
  "developerPayload": "This is my payload",
  "tasks": [
    {
      "endpoint": "https://yourserver.com/export/export-id/results/my-result-id",
      "httpStatusCode": 200,
      "isHealthy": true
    },
    {
      "endpoint": "https://yourserver.com/export/export-id/pdf-report",
      "httpStatusCode": 200,
      "isHealthy": true
    },
    {
      "endpoint": "https://yourserver.com/export/export-id/crawled-version",
      "httpStatusCode": 200,
      "isHealthy": true
    }
  ]
}
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Export Method" icon="file-export" href="/reference/actions/downloads/export/">Learn how to initiate export requests for various scan artifacts.</Card>
  <Card title="Webhooks Overview" icon="plug" href="/reference/data-types/authenticity/webhooks/overview/">Understand the different types of webhooks and how to handle them.</Card>
  <Card title="How to Display Scan Reports" icon="magnifying-glass" href="/concepts/features/how-to-display/">Learn how to present exported scan data to your users.</Card>
</CardGroup>
