POST
Customer.RemoveFolder
Remove one folder from a customer. Matches the dashboard customer remove-folder behavior by deleting the folder id from contactus.folders and clearing that folder's folder_sub_status and folder_sub_internal_status entries.
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Runs the Customer.RemoveFolder function and returns JSON.
Push Service
Pushes event customer.removefolder to users who should see this change.
Automation
No automation is run for this function.
Special Instructions
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
customer_idpost | int | 123 | Customer id. You may also send cust_id. |
folder_idpost | int | 2672 | Folder id to remove from the customer. |
Optional Parameters
No optional body parameters are defined for this function.
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Customer.RemoveFolder",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"customer_id": "123",
"folder_id": "2672"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Customer.RemoveFolder",
"url_domain": "https:\/\/{domain}\/app\/Customer.RemoveFolder"
}Endpoint
POST /app/Customer.RemoveFolder
POST https://{user}.bull36.com/app/Customer.RemoveFolder
POST https://{domain}/app/Customer.RemoveFolderSample Output
{
"success": 1,
"message": "Your Folders Remove",
"customer_id": "123",
"folder_id": "2672",
"socket_event": "customer.removefolder"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ customer_id: '123', folder_id: '2672' });
const res = await fetch('/app/Customer.RemoveFolder', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Customer not found"
}