remove Collection From Team

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

Method to remove a collection from a team

Return

the response of the request as String

Parameters

token

The token of the user

userId

The identifier of the user

teamId

The identifier of the team

collectionId

The identifier of the collection