Register user

Register a user on the Floating Server for a given product.

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

Request body

{
  "product": "string (optional)",
  "user": "string (optional)",
  "os_hostname": "string (optional)",
  "ip_local": "string (optional)",
  "user_info": "string (optional)"
}

Success response

Code: 200 OK

Example request

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

Last updated

Was this helpful?