v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBSecurity Monitoring
Update an entity context sync configuration
Update an existing entity context sync configuration. Supports partial updates; only the fields provided in the request body are modified.
patch/api/v2/security_monitoring/configuration/integration_config/{integration_config_id}
Path parameters
integration_config_idstring required
The ID of the entity context sync configuration.
Request body
Example request
{
"data": {
"attributes": {
"domain": "siem-test.com",
"enabled": true,
"integration_type": "GOOGLE_WORKSPACE",
"name": "My GWS Integration (renamed)",
"secrets": {
"admin_email": "test@example.com"
},
"settings": {
"setting1": "value1"
}
},
"type": "integration_config"
}
}Response
OK
Example response
{
"data": {
"attributes": {
"created_at": "2026-05-01T12:00:00Z",
"domain": "siem-test.com",
"enabled": true,
"integration_type": "GOOGLE_WORKSPACE",
"modified_at": "2026-05-01T12:00:00Z",
"name": "My GWS Integration",
"settings": {
"setting1": "value1"
},
"state": "valid"
},
"id": "11111111-2222-3333-4444-555555555555",
"type": "integration_config"
}
}