Get All Versions

Written By Team BugSmash

Last updated 9 days ago

METHOD: GET
URL: https://api.bugsmash.io/api/v2/versions

HEADERS:
  X-API-Key: YOUR_API_KEY
  Content-Type: application/json

QUERY PARAMETERS:
  projectId  (uuid, required)  - The project ID

CURL:
curl --location 'https://api.bugsmash.io/api/v2/versions?projectId={projectId}' \
--header 'X-API-Key: YOUR_API_KEY'

RESPONSE:
{
  "status": true,
  "message": "Project versions",
  "data": [
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f01234567891",
      "project_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "ext_link": null,
      "version_name": "V1",
      "version_no": 1,
      "email_slug": null,
      "updated_at": "2025-12-16T07:56:48.000000Z",
      "status": "To Review",
      "pause_comment": 0,
      "upload_status": "completed",
      "approved_by": null,
      "approved_by_email": null,
      "is_latest": true,
      "short_url": "https://app.bugsmash.io/review/AbCdE"
    }
  ]
}