Skip to main content
POST
/
admin-users
/
single-sign-on
Admin Single Sign-On
curl --request POST \
  --url https://api.nuwebgroup.com/v1/admin-users/single-sign-on \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John Doe",
  "email": "[email protected]",
  "redirect": "/events"
}
'
{
  "user_id": 1,
  "url": "https://admin.yourdomain.com/?signature=xyz&user=1"
}

Authorizations

Authorization
string
header
required

The 'Bearer' token can be obtained from the token management interface or via the login endpoint using your admin user credentials.

Body

application/json

Request body for requesting a secure admin user login URL.

email
string

The email of the customer to sign in as.

name
string

The name of the customer to sign in as.

redirect
string

An optional redirect URL to send the customer to after successful sign-in.

Response

Successful request to generate a secure sign-on URL for the requested admin user.

user_id
integer
url
string