manageCollectionTeams

@PutMapping(headers = "token", path = ""/{" + COLLECTION_IDENTIFIER_KEY + "}/" + TEAMS_KEY")
open fun manageCollectionTeams(@RequestHeader(value = "token") token: String, @PathVariable(value = "user_id") userId: String, @PathVariable(value = "collection_id") collectionId: String, @RequestBody payload: Map<String, Any>): String

Method to manage the teams where the collection is shared

Return

the response of the request as String

Parameters

userId

: the identifier of the user

token

: the token of the user

payload

: payload of the request


                             {
                                 "teams" : ["the teams of the collection"] -> List[String],
                             }