Delete a builder
Delete a builder allows you to remove a builder instance from your account and delete it completely.
Please read carefully!
1. The builder ID url will be canceled and removed immediately.
2. Any builder connections webhooks and nodes will be removed and stopped working.
3. All workflows, data and saved information within this builder will be removed. make sure you backup all JSON workflows from within the builder if you need.
4. Make sure there aren't any WhatsApp numbers webhook or other systems that provide webhooks to this builder.
5. This operation is irreversible! make sure this is really what you want.
Settings:
URL | |
Method | JSON via DELETE |
Header | Authorization: Bearer {{access_token}} *The access_token can be received from settings->get access token API. |
Body:
Parameter | Description / Example | Remarks |
|---|---|---|
builderID | The builderID you wish to delete. | The builderID is the ID that was assigned to you when creating the builder, and also can be achieved by the builders list endpoint |
Response:
{
"status": "OK",
"builderID": 512,
"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 builderID you provided | ||||||||||
reason | 'reason' is the status explanation in case of FAIL
|