Genbase
ApiKits

List kit versions

GET
/kit/{owner}/{kit_id}/versions

Authorization

AuthorizationRequiredBearer <token>

JWT Token for authenticated users (obtained via /auth/jwt/login).

In: header

Path Parameters

ownerRequiredstring

Kit owner identifier

kit_idRequiredstring

Kit identifier

curl -X GET "http://localhost:8000/kit/string/string/versions" \
  -H "Authorization: Bearer <token>"

Successful Response

{
  "versions": [
    "string"
  ]
}