Teams
Updates a team
put/alerting/teams/{teamid}
Path parameters
teamidinteger required
ID of the team to be retrieved
Request body
Example request
{
"name": "Team Rocket",
"member_ids": [
1,
4
]
}Response
Successful operation
Example response
{
"team": {
"id": 1,
"name": "Team Rocket",
"members": [
{
"id": 1,
"name": "John Doe",
"type": "user"
},
{
"id": 4,
"name": "Sidekick Jimmy",
"type": "contact"
}
]
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.