Skip to content
View as Markdown

POST Bulk Delete Company Notes​

POST
/companies/{id}/notes/bulk-delete

Delete several notes from one company in a single request. The company-side counterpart to POST /subscribers/{id}/notes/bulk-delete, with identical semantics: ids are scoped to the company in the path, foreign ids are silently skipped, and no more than 200 ids are accepted.

Each deletion fires fluent_crm/company_note_deleted.

Required capability: fcrm_manage_contact_cats_delete

Enforced by CompanyPolicy::bulkDeleteNotes().

Authorizations​

ApplicationPasswords

WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password

Type
API Key (header: Authorization)

Parameters​

Path Parameters

id*

Company id.

Type
integer
Required

Request Body​

application/json
JSON
{
"note_ids": [
0
]
}

Responses​

Notes deleted.

application/json
JSON
{
"message": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​

Powered by VitePress OpenAPI