Meeting categories
Meetings can be grouped by category
The meeting category object
{
"id": 123,
"name": "City Council",
"slug": "city-council",
"created_at": "2023-07-04T07:01:17.000Z",
"updated_at": "2023-07-04T07:01:17.000Z"
}Endpoints
List all meeting categories
GET https://api.heygov.com/{jurisdiction_id}/meetings/categories
Create a meeting category
POST https://api.heygov.com/{jurisdiction_id}/meetings/categories
Path Parameters
Name
Type
Description
jurisdiction_id*
String
Request Body
Name
Type
Description
name*
String
Category name
Edit a category
PUT https://api.heygov.com/{jurisdiction_id}/meetings/categories/{category_id}
Path Parameters
Name
Type
Description
jurisdiction_id*
String
Jurisdiction/HeyGov ID
Request Body
Name
Type
Description
name
String
Category name to update
Delete a meeting category
DELETE https://api.heygov.com/{jurisdiction_id}/meetings/categories/{category_id}
Category will be removed from all meetings that had it, and category data will be deleted from database
Path Parameters
Name
Type
Description
jurisdiction_id*
String
Jurisdiction/HeyGov ID
category_id*
Number
ID of category
Last updated