Customer devices
A workspace may be configured so that customers must confirm logging in from unknown devices.
When a customer registers, the device they are using is added to the list of known devices automatically.
Authenticating devices by email token
Method reference available here.
Prerequisites:
Email sender integration must be enabled.
When a customer logs in from a new device, an authentication token is sent to the customer’s email address. The device is not allowed to log in to the customer’s account until that token is sent.
curl --request GET
--url https://{SYNERISE_API_BASE_PATH}/sauth/client/device-control/53b1e613-826b-4b9e-8ee3-2ff7dde2f1e4
Adding device to current account
Method reference available here.
You can add a device to the trusted device list of the currently authenticated customer.
deviceId
is the only obligatory parameter. The format of the ID depends on the OS.
curl --request POST
--url https://{SYNERISE_API_BASE_PATH}/v4/my-account/linked-devices
--header 'authorization: Bearer eyJh...JxkM5o'
--data '{
"deviceId":"ec9d4410-4048-43e5-b755-f7d53d00656c",
}'