curl --request POST \
--url https://api.quentli.com/v1/auth-links \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"customerId": "cus_1234567890abcdefghij",
"url": "https://portal.example.com/pagos"
}
}
'{
"url": "https://portal.example.com/al/abc123"
}Generates a one-time authenticated URL that signs the customer into the payment portal.
curl --request POST \
--url https://api.quentli.com/v1/auth-links \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"customerId": "cus_1234567890abcdefghij",
"url": "https://portal.example.com/pagos"
}
}
'{
"url": "https://portal.example.com/al/abc123"
}Organization API key using Authorization: Bearer sk_....
Request body for creating an authenticated customer portal link.
Show child attributes
Auth link created
Response containing an authenticated customer portal link.
Authenticated URL the customer can use to access the portal.
"https://portal.example.com/al/abc123"
Was this page helpful?