Skip to content

Submission Status Reference

Track listing workflow with step-by-step status and completion times using the status tracking system.

The SubmissionStatusResponse provides detailed progress tracking with current step, completion flag, timestamps, and error details:

interface SubmissionStatusResponse {
submissionId: string;
step: string;
completed: boolean;
createdAt: string;
completedAt?: string;
error?: string;
}

Submissions progress through multiple verification and registration steps. Monitor each phase to understand where your submission currently stands in the verification pipeline.

When errors occur, the status response includes detailed error information to help diagnose and resolve issues with your submission.