Reset user access
Reset user access endpoint allows you to reset access to the builder, in case your client forgot the email/password/2FA.
When you create a builder, you have two ways to access it: either via the "login to builder" endpoint, or directly from the URL using a email/password and 2FA access. this reset user access only resets the access through the URL.
** This reset user access does not delete the builder, or its content. it only resets the login access, allowing you to create new login details from accessing the URL of the builder after resetting.
** Resetting the user access will revoke the old credentials for the builder, and will sign out the user that is logged in to that builder with the old credentials.
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 reset |
Response:
{
"status": "OK",
"builderID": 1234,
"reason": 1
}Response-Explain:
Parameter | Description | ||||||||||
status | OK or FAIL "OK" means the request has been sent to our team. "Fail" means error. | ||||||||||
builderID | The builder ID you provided. | ||||||||||
reason | 'reason' is the status explanation in case of FAIL
|