Genbase
ApiRepository

Delete repository

DELETE
/repository/{repo_name}

Authorization

AuthorizationRequiredBearer <token>

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

In: header

Path Parameters

repo_nameRequiredstring

Repository name (usually the module_id)

curl -X DELETE "http://localhost:8000/repository/string" \
  -H "Authorization: Bearer <token>"

Generic success response

{
  "status": "success",
  "message": "string"
}