Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CreateBulkCmd = &cobra.Command{ Use: "create-bulk <profile-uuid>", Short: "Create new contacts", Long: "Create a new contact in the email marketing system.\n\nThis endpoint allows you to create a new contact with basic information like name, email, and surname.\n\nIf double opt-in is enabled, the contact will be created with a pending status\nand a confirmation email will be sent.", Args: cobra.MatchAll(cobra.ExactArgs(1)), Run: func(cmd *cobra.Command, args []string) { payload, err := json.Marshal(createBulkBody(cmd)) if err != nil { log.Fatal(err) } r, err := api.Request().ReachCreateNewContactsV1WithBodyWithResponse(context.TODO(), args[0], "application/json", bytes.NewReader(payload)) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var CreateCmd = &cobra.Command{ Use: "create", Short: "Create a new contact", Long: "Create a new contact in the email marketing system.\n\nThis endpoint allows you to create a new contact with basic information like name, email, and surname.\n\nIf double opt-in is enabled,\nthe contact will be created with a pending status and a confirmation email will be sent.", Run: func(cmd *cobra.Command, args []string) { payload, err := json.Marshal(createBody(cmd)) if err != nil { log.Fatal(err) } r, err := api.Request().ReachCreateANewContactV1WithBodyWithResponse(context.TODO(), "application/json", bytes.NewReader(payload)) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var DeleteCmd = &cobra.Command{ Use: "delete <uuid>", Short: "Delete a contact", Long: "Delete a contact with the specified UUID.\n\nThis endpoint permanently removes a contact from the email marketing system.", Args: cobra.MatchAll(cobra.ExactArgs(1)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().ReachDeleteAContactV1WithResponse(context.TODO(), uuid.MustParse(args[0])) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var GroupCmd = &cobra.Command{
Use: "contacts",
Short: "Contacts commands",
}
View Source
var ListCmd = &cobra.Command{ Use: "list", Short: "List contacts", Long: "Get a list of contacts, optionally filtered by group and subscription status.\n\nThis endpoint returns a paginated list of contacts with their basic information.\nYou can filter contacts by group UUID and subscription status.", Run: func(cmd *cobra.Command, args []string) { utils.EnumCheck(cmd, "subscription-status", []string{"subscribed", "unsubscribed"}) r, err := api.Request().ReachListContactsV1WithResponse(context.TODO(), listParams(cmd)) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var ListGroupsCmd = &cobra.Command{ Use: "list-groups", Short: "List contact groups", Long: "Get a list of all contact groups.\n\nThis endpoint returns a list of contact groups that can be used to organize contacts.", Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().ReachListContactGroupsV1WithResponse(context.TODO()) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.