# Get Emailpreview Test Information V2 Retrieves detailed information about a specific test, including the subject, submission time (in UNIX timestamp format), processing statuses, and any content checking results. The response includes one to three properties containing arrays of clients: completed (clients that have successfully uploaded screenshots), processing (clients that are still being processed by our system), and bounced (clients that were bounced by the destination and cannot be retried). Additionally, the system will automatically requeue screenshots if they remain in processing for more than three minutes. Endpoint: GET /v2/preview/tests/{test_id} Version: 1.0.0 Security: basicAuth ## Path parameters: - `test_id` (string, required) The ID of the test to retrieve ## Response 200 fields (application/json): - `subject` (string, required) - `date` (integer, required) - `completed` (array) - `processing` (array) - `bounced` (array) - `content_checking` (any) ## Response 400 fields (application/json): - `Reason` (string, required) ## Response 401 fields (application/json): - `Reason` (string, required) ## Response 500 fields (application/json): - `message` (string, required) Response message ## Response default fields (application/json): - `error` (object) - `error.name` (string) - `error.message` (string)