Skip to main content

List Team Verticals

Response

{
  "data": [
    {
      "id": "uuid",
      "vertical": "healthcare",
      "event_types": ["CARDIAC", "TRAUMA", "RESPIRATORY"],
      "parser_id": "uuid"
    }
  ]
}

Add Vertical

Requires teams:manage permission.

Request Body

{
  "vertical": "healthcare",
  "event_types": ["CARDIAC", "TRAUMA", "RESPIRATORY"],
  "parser_id": "uuid"
}
FieldTypeRequiredDescription
verticalstringYesThe vertical this team covers — healthcare, emergency, banking, telecom, delivery, gov, energy
event_typesstring[]NoSpecific event types within the vertical the team can handle
parser_idstringNoParser to use for events in this vertical
The score engine uses this configuration to determine capability match. A team that does not list the event vertical gets a capability penalty.

Update Vertical

Request Body

{
  "event_types": ["CARDIAC", "TRAUMA"],
  "parser_id": "uuid"
}

Remove Vertical

Requires teams:manage permission.