Manage Workspaces

Update and delete workspaces

Update or delete existing workspaces.

Update a Workspace

curl https://api.missinglettr-api.com/v1/workspaces/1/ \
  -X PATCH \
  -H "Authorization: Api-Key YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Updated Name"}'

Delete a Workspace

Deleting a workspace removes all associated accounts, posts, and data. This cannot be undone.
curl https://api.missinglettr-api.com/v1/workspaces/1/ \
  -X DELETE \
  -H "Authorization: Api-Key YOUR_API_KEY"