Genbase
ApiKits

List all kits

GET
/kit

Authorization

AuthorizationRequiredBearer <token>

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

In: header

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

Successful Response

{
  "kits": [
    {
      "name": "string",
      "version": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "size": 0,
      "owner": "default",
      "doc_version": "v1",
      "kit_id": "",
      "environment": []
    }
  ]
}