action braze_list_user_s_subscription_group_sms { label: "List User's Subscription Group - SMS" description: "Use the endpoint below to list and get the subscription groups of a certain user.\n\n> If there are multiple users (multiple external ids) who share the same email address, all users will be returned as a separate user (even if they have the same email address or subscription group)." provider: braze method: GET path: "/subscription/user/status" encoding: json input: { type: "object" properties: { external_id: { type: "string" } limit: { type: "string" } offset: { type: "string" } phone: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }