mikeckennedy / listmonk

Listmonk Email App API Client for Python
MIT License
34 stars 3 forks source link

doesn't actually add new subscriber to list #14

Closed cristianrat closed 2 hours ago

cristianrat commented 2 hours ago

as the title says, it creates the subscriber correctly, but doesn't actually add to list

                new_subscriber = self.listmonk.create_subscriber(
                    email="testuser@some.domain",
                    name="Jane Doe",
                    list_ids={self.marketing_list_id},
                    pre_confirm=True,
                    attribs={"is_premium": True},
                )
cristianrat commented 2 hours ago

never mind, the permissions weren't allowing access to lists :) surprised it doesn't throw an error, though...