Skip to content
TALA
Esc
navigateopen⌘Jpreview

Retrieve all versions of an asset

GET/api/assets/{id}/versions
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
Header parameters
x-organization-idstring
Target organization id. Defaults to the caller's personal organization when omitted.
Responses
200OK
any
401Unauthorized
any
404Not Found
any
500Internal Server Error
any
Try it
Server
Authorization
Parameters
Request
curl -X GET "http://localhost:8000/api/assets/string/versions" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "message": "Asset versions retrieved successfully",
  "data": [
    {
      "versionNumber": 1,
      "s3Key": "assets/logo_v1.png",
      "assetShortUrl": "https://assets.tala.com/logo_v1.png",
      "assetLongUrl": "https://tala-store.s3.amazonaws.com/logo_v1.png?X-Amz-Algorithm...",
      "description": "Initial version",
      "createdAt": "2026-04-03T14:53:11Z"
    }
  ]
}