deleteteam
description
Deletes a Buzzy Team
parameters
The X-Auth-Token and X-User-Id are derived from the values authToken and userId returned from the login endpoint and are used in the HTTP header.
{
"teamID": "<team ID to delete>"
}response
Returns the status of the deletion operation.
example
POST /api/deleteteam
X-Auth-Token:<insert token here>
X-User-Id:<insert user id here>
{
"teamID": "<team ID to delete>"
}You should get back:
{
"status": "success"
}Last updated