Skip to main content
PUT
/
api
/
v2
/
public
/
tables
/
group
/
edit
curl -X PUT "https://app.refold.ai/api/v2/public/tables/group/edit" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID" \
  -H "Content-Type: application/json" \
  -d '{ "tableIds": ["6a314fc3d396207fd2506a0a"], "group": "crm-tables" }'
Set or clear the group label on multiple persistent tables at once. An empty group unsets the field.

Authentication

x-api-key
string
required
Your Refold API key.
linked_account_id
string
required
The linked account that owns the tables.

Body Parameters

tableIds
array
required
IDs of the tables to update.
group
string
Group label to set. An empty string unsets the group.

Response

Returns 200 with an empty body on success.
curl -X PUT "https://app.refold.ai/api/v2/public/tables/group/edit" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID" \
  -H "Content-Type: application/json" \
  -d '{ "tableIds": ["6a314fc3d396207fd2506a0a"], "group": "crm-tables" }'