Login to a builder
After you create a builder, you get the builder URL to access it.
accessing the builder directly from the URL is mostly meant for your end user client to do. this will create him an account with email, password and 2FA so only your end user is able to access it directly from the URL.
Alternatively, with this login to a builder endpoint, you can access any builder under your account by bypassing the login screen.
This will create a temporarily login link you can access from your browser or using iFrame to open the builder without the need for email,password and 2FA.
Important Remarks
After creating login link, you must access it within 5 minutes.
You can access only one builder link at a time from the same browser. if you wish to login to more than one builder simultaneously, you must use incognito mode, or different iFrame browser session
Settings:
URL | |
Method | JSON via POST |
Header | Authorization: Bearer {{access_token}} *The access_token can be received from settings->get access token API. |
Body:
Parameter | Description / Example |
|---|---|
builderID | The builderID you wish to login to |
Response:
{
"status": "OK",
"builderID": 4142,
"login": "https://builder..."
}
Response-Explain:
Parameter | Description | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
status | OK or FAIL "OK" means the request has been sent to our team. "Fail" means error. | ||||||||||
builderID | The builderID you login to | ||||||||||
login | The login URL for that builder | ||||||||||
reason | 'reason' is the status explanation in case of FAIL
|