DELETE /api/application/token/delete

Delete a application_tokens record by id or token.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
idintegerNoid as string convert from int
tokenstringNotoken[ 1 .. 1000 ] characters

Request Example

{
  "id": 0,
  "token": "string"
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}