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": "john@example.com",
  "redirect": "/events"
}
'
{
  "userId": 1,
  "url": "https://admin.yourdomain.com/?signature=xyz&user=1"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nuwebgroup.com/llms.txt

Use this file to discover all available pages before exploring further.

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.

Headers

X-NU-COMPANY-ID
integer

The ID of the company this operation should be performed against.

Accept-Language
string

Sets the preferred language for localised response content (e.g. en, fr, de). If the requested language is not supported by the company, the company fallback language will be assumed.

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.

userId
integer
url
string