Skip to main content
POST
/
customers
/
single-sign-on
Customer Single Sign-On
curl --request POST \
  --url https://api.nuwebgroup.com/v1/customers/single-sign-on \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John Doe",
  "email": "[email protected]",
  "redirect": "/events"
}
'
{
  "customerId": 1,
  "url": "https://exampleshop.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 customer 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 customer.

customerId
integer
url
string