Block

Block User

[BETA] Reject calls with this end-user id

Parameters:

  • user_ids (List[str], required): The unique user_ids for the users to block

    (any /chat/completion call with this user={end-user-id} param, will be rejected.)

    curl -X POST "http://0.0.0.0:8000/user/block"
    -H "Authorization: Bearer sk-1234"
    -d '{
    "user_ids": [<user_id>, ...]
    }'
    
POST/customer/block
Authorization
Body
user_ids*User Ids
Response

Successful Response

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