Remove one or more tags from selected companies by their IDs
POST
/companies/tags/bulk-deleteLast modified: 2 months ago
The Cobra.ServiceExtensions.Api.CobraApiResponse`1 object contains the StatusCode, the state, and an more detailed error message (optional)
Request
Header Params
X-Integration-Name
string
required
Integration name
Example:
API Documentation
X-Integration-Provider
string
required
Integration provider
Example:
cobra GmbH
X-Cobra-TenantId
string
required
Tenant ID
Example:
12e39e53-ece1-4d8d-8958-e782de1dbef0
X-Integration-Contact
string
optional
Integration contact
Example:
info@cobra.de
Accept-Language
string
optional
Example:
de
Body Params application/json
Command used to Remove a Tag or more from Companies.
companiesIds
array[string]
required
The Ids of the Companies.
>= 1 items
tagsIds
array[string]
required
The Ids of the Tags.
>= 1 items
Example
{
"companiesIds": [
"string"
],
"tagsIds": [
"string"
]
}
Request samples
Responses
Success(200)
returns if the request violates a validation rule.(400)
returns if you do not have the required permissions.(403)
returns if no Company or person could be found with this Id.(404)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
boolean
optional
message
string | null
optional
metaData
object (ResponseMetaData)
optional
totalResults
integer <int32>
optional
responseTimeStamp
string <date-time>
optional
statusCode
integer <int32>
optional
Example
{
"data": true,
"message": null,
"metaData": null,
"statusCode": 200
}
Last modified: 2 months ago