action daniweb_patch_users_id_synergies { label: "patch_users_ID_synergies" description: "Skip, mute or unmute a user you've been matched with. Skipped matches are only presented as algorithmic matches after all other candidates have been exhausted. You cannot be matched with or meet muted users. You can only skip, mute or unmute users existing within the same bubble." provider: daniweb method: PATCH path: "/users/{ID}/synergies" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { relationship: { type: "object" properties: { muted: { type: "boolean" } skipped: { type: "boolean" } } } } } success: { type: "boolean" } } } }