Leave Gym

DELETE /gym/visit

Leave gym using JWT.

Responses

  • 200 application/json

    Successfully left gym.

    Hide response attributes Show response attributes object
    • success boolean

      Whether you left gym

    • Additional properties are allowed.

      Hide visit_history attributes Show visit_history attributes object
  • 401 application/json

    User is not unauthorized or permissions are missing.

    Hide response attributes Show response attributes object
  • 429 application/json

    Rate limit exceeded - 100 queries per 15 minutes.

    Hide response attributes Show response attributes object
DELETE /gym/visit
curl \
 -X DELETE http://63.141.232.244:25540/v0/gym/visit \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "visit_history": {
    "gym_id": 1,
    "left_at": "2024-10-10T20:36:47Z",
    "entered_at": "2024-10-10T18:36:47Z",
    "visit_history_id": 1
  }
}
Response examples (401)
{
  "success": false,
  "error": "Unauthorized"
}
Response examples (429)
{
  "success": false,
  "error": "Too many requests, please try again later"
}