remove Team From Collection

@DeleteMapping(headers = "token", path = "/{" + COLLECTION_IDENTIFIER_KEY + "}/" + TEAMS_KEY + "/{" + TEAM_IDENTIFIER_KEY + "}" )
open fun removeTeamFromCollection(    @RequestHeader(value = "token") token: String,     @PathVariable(value = "user_id") userId: String,     @PathVariable(value = "collection_id") collectionId: String,     @PathVariable(value = "team_id") teamId: String): String

Method to remove a team from a collection

Return

the response of the request as String

Parameters

token

The token of the user

userId

The identifier of the user

collectionId

The identifier of the collection

teamId

The identifier of the team