Skip to main content
POST
/
login
Retrieve API Token
curl --request POST \
  --url https://api.nuwebgroup.com/v1/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "password": "password",
  "device_name": "api_test"
}
'
{
  "token": "PERSONALACCESSTOKEN123"
}

Body

application/json

Login params

email
string

Your admin user email

password
string

Your admin user password

device_name
string

An arbitrary identifier for the device making the API request

Response

After a successful login request, an access token is generated for subsequent API calls.

token
string