Provision Users
Cloutly Embed provisioning flow: signed JWT auth and on-the-fly upsert for users and businesses.
Step 1: Obtain your signing key
Step 2: Generate a short-lived JWT on your backend
Required claims
{
"externalUserEmail": "[email protected]",
"externalBusinessId": "biz_123",
"businessDisplayName": "Acme Plumbing - Gold Coast",
"firstName": "Jane",
"lastName": "Smith",
"role": "ADMIN",
"smsLimits": 500,
"iat": 1735689600,
"exp": 1735689900
}Claim notes
Step 3: Pass token into iframe session
Last updated