Get Non Approved Clubs

GET /clubs/toggle : Obtain all clubs that require admin approval

Example Request

This is an admin protected route, a valid admin JWT is required in the header field

Header

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1OTU4Mjg1MDQsImlhdCI6IjIwMjAtMDctMjdUMDE6MzY6NDQuNDYwMTkyOS0wNDowMCIsInN1YiI6ImFkbWluIn0.jfC8lgQEcEQxUaG0mNibzeX5BD1uUQ7wQdM0LhxHrBQ

Possible Responses

Immediate Success

{
"code": 1,
"message": "retrieved all clubs that require approval",
"data": [
{
"id": 37,
"name": "Cheese Club"
},
{
"id": 38,
"name": "Potato Club"
}
]
}

Failure

{
"code": -1,
"message": "please contact an administrator",
"data": {}
}
Last updated on by Chris Lim