DELETE /summary/{uniqueid}

Path parameters

  • uniqueid string Required

Responses

  • 200 application/json

    Summary deleted

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object
      Hide data attribute Show data attribute object
      • uniqueid string
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 403 application/json

    Forbidden

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 400 application/json

    Missing uniqueid

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 500 application/json

    Failed to delete summary

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 404 application/json

    Not found

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 503 application/json

    Service unavailable

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
DELETE /summary/{uniqueid}
curl \
 --request DELETE 'http://localhost:8080/summary/{uniqueid}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 42,
  "message": "string",
  "data": {
    "uniqueid": "string"
  }
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (403)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (400)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (404)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (503)
{
  "code": 42,
  "message": "string",
  "error": "string"
}