removeMember

@PatchMapping(path = ""/{" + IDENTIFIER_KEY + "}/" + PROJECTS_KEY + "/{" + PROJECT_IDENTIFIER_KEY + "}" + REMOVE_MEMBER_ENDPOINT", headers = [])
open fun removeMember(@PathVariable(value = "id") id: String, @PathVariable(value = "project_id") projectId: String, @RequestHeader(value = "token") token: String, @RequestBody payload: Map<String, String>): String

Method to remove a member from a project

Return

the result of the request as String

Parameters

id

: the identifier of the user

projectId

: the project identifier from remove the member

token

: the token of the user

payload

: payload of the request


             {
                 "member_id": "the identifier of the member to remove", -> [String]
             }