PUT
    /v1/spotMemberCustomRole/{customRoleId}
  
  curl \
 --request PUT 'https://openapi.meltingspot.io/v1/spotMemberCustomRole/{customRoleId}' \
 --header "Content-Type: application/json" \
 --data '{"label":"string","description":"string","permissions":["live.*"]}'
        Request examples
  
  {
  "label": "string",
  "description": "string",
  "permissions": [
    "live.*"
  ]
}
        Response examples (200)
  
  {
  "id": "string",
  "label": "string",
  "description": "string",
  "permissions": [
    "live.*"
  ]
}