Unregister user

Unregister a user from a product on the Floating Server.

URL: /api/v4/unregister Method: POST Content-Type: application/json Accept: application/json

Request body

{
  "product": "string (optional)",
  "user": "string (optional)"
}

Success response

Code: 200 OK

Example request

curl -X POST 'http://localhost:8080/api/v4/unregister' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{"product":"<product-code>","user":"<user>"}'

Last updated

Was this helpful?