The Content Export Status API provides real-time status information to monitor job progress and check completion status.
- Pending: Job is pending start of processing
- In Progress: Job is actively processing content
- Completed: Job finished successfully
- Failed: Job encountered errors and could not complete
- Current Status: Real-time job status
- Progress Metrics: Items processed, total items
- Error Details: Specific errors encountered during processing
- Timing Information: Start time, estimated completion, actual completion
- Only a client application can invoke this API.
- This API requires a site license (SKU: EG-CL-RTKA-PT).
Security
oAuthClient(Required scopes:
https://api.egain.cloud/auth/.de...
)GET
curl -i -X GET \
https://api.egain.cloud/knowledge/portalmgr/v4/content/export/7A84B875-6F75-4C7B-B137-0632B62DB0BD/status \
-H 'Accept-Language: en-US' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'The current status and progress information for the specified export job.
Response Details:
- Status: Current job state (Pending, In Progress, Successful, etc.)
- Progress: Number of items processed vs. total items
- Timing: Start time and estimated completion time
- Errors: Any validation or processing errors encountered
The estimated timestamp when the job is expected to finish.
Example:"2025-09-15T11:30:00.000Z"
The timestamp when the job completed.
Example:"2025-09-15T11:25:00.000Z"
Response
- Pending export job
- Active export job
- Successfully completed job
- Job that encountered errors
Shows an export job that is pending start of processing.
{ "status": "Pending" }