Documentação da API
Exemplos de Endpoints
- Alerta
- GETObter Alertas
- POSTCriar Alerta
- DELExcluir Alerta
- PATCHAtualizar Alerta
- GETObter Alerta por Id
- POSTCriar Alerta com arquivos
- POSTAtualização em Massa de Alertas
- POSTCriar Caso a partir de Alerta
- POSTMesclar Alerta com Caso
- POSTMesclar Alertas com Caso
- POSTObter Alertas com Paginação
- GETObter Atividades por Alerta
- GET
- Caso
- Tarefa
Alerta
Atualização em Massa de Alertas
Update many existing alerts
POST
/
alerts
/
_bulk
Copy
curl --request POST \
--url https://local.casebender.com:3000/api/alerts/_bulk \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"id": [
"<string>"
],
"fields": {
"title": "<string>",
"description": "<string>",
"type": "<string>",
"statusValue": "<string>",
"severity": 123,
"tlp": 123,
"pap": 123,
"assigneeId": "<string>",
"tags": [
{
"id": 123
}
],
"organizations": [
{
"id": "<string>"
}
]
},
"options": {
"selectAll": true,
"filters": {
"statusValue": [
"<string>"
],
"severity": [
123
],
"assigneeId": [
"<string>"
],
"searchKey": "<string>",
"searchValue": "<string>"
}
}
}'
Copy
{
"count": 123
}
Authorizations
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
Copy
curl --request POST \
--url https://local.casebender.com:3000/api/alerts/_bulk \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"id": [
"<string>"
],
"fields": {
"title": "<string>",
"description": "<string>",
"type": "<string>",
"statusValue": "<string>",
"severity": 123,
"tlp": 123,
"pap": 123,
"assigneeId": "<string>",
"tags": [
{
"id": 123
}
],
"organizations": [
{
"id": "<string>"
}
]
},
"options": {
"selectAll": true,
"filters": {
"statusValue": [
"<string>"
],
"severity": [
123
],
"assigneeId": [
"<string>"
],
"searchKey": "<string>",
"searchValue": "<string>"
}
}
}'
Copy
{
"count": 123
}
Assistente
Responses are generated using AI and may contain mistakes.