Allowed ip

Delete Allowed Ip

POST/delete/allowed_ip
Authorization
Body
ip*Ip
Response

Successful Response

Body
any
Request
const response = await fetch('/delete/allowed_ip', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "ip": "text"
    }),
});
const data = await response.json();
Response
{
  "detail": [
    {
      "loc": [
        "text"
      ],
      "msg": "text",
      "type": "text"
    }
  ]
}