action daniweb_delete_groups_id_memberships { label: "delete_groups_ID_memberships" description: "Leave a group that you are a member of and that was created by a user who exists within the current access token's bubble." provider: daniweb method: DELETE path: "/groups/{ID}/memberships" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { success: { type: "boolean" } } } }