DELETE

Delete Account Team

Deletes a specified team from your account. This action is permanent and cannot be undone.

Endpoint

DELETE v5/accountteams/{team_id}

Requires authentication

Path Parameters

The team to delete.

team_id
string
required
The ID of the team to delete.

Query Parameters

All query parameters are optional.

reassign
integer
The ID of another team to reassign the deleted team’s surveys to. If not provided, Alchemer will automatically assign the surveys to an available team.

Response

Returns a status object confirming the deletion.

result_ok
boolean
Whether the request succeeded. Returns false if the team could not be deleted, along with a code and message describing the error.

Examples

Request (cURL)
curl -X DELETE "https://api.alchemer.com/v5/accountteams/YOUR_TEAM_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Success Response
{
  "result_ok": true
}
Error Response
{
  "result_ok": false,
  "code": 400,
  "message": "Could not delete team"
}