Skip to content

mikwat/mailerlite-swift

Repository files navigation

MailerLite Swift SDK

A basic Swift SDK for the MailerLite API.

Usage

Get a list of subscribers

import MailerLiteAPIClient

let mailerLite = MailerLiteAPIClient(apiKey: "your-api-key")

do {
    let response = try await mailerLite.send(ListSubscribers())
    // TODO: handle response
    let data = response.data {
        print("Found \(data.count) subscribers")
    }
} catch {
    // TODO: handle error
}

Upsert a subscriber

import MailerLiteAPIClient

let mailerLite = MailerLiteAPIClient(apiKey: "your-api-key")

do {
    let response = try await mailerLite.send(UpsertSubscriber(email: "dummy@example.com", fields: Subscriber.Fields(lastName: "Testerson")))
    // TODO: handle response
    let data = response.data {
        print("Subscriber \(data.email) upserted")
    }
} catch {
    // TODO: handle error
    switch result {
}

Update a subscriber

import MailerLiteAPIClient

let mailerLite = MailerLiteAPIClient(apiKey: "your-api-key")

do {
    let response = try await mailerLite.send(UpdateSubscriber(
        id: "31897397363737859",
        fields: Subscriber.Fields(
            lastName: nil,
            name: "Dummy"
        ),
        groups: [
            "4243829086487936",
            "14133878422767533",
            "31985378335392975"
        ]
    )))
    // TODO: handle response
    let data = response.data {
        print("Subscriber \(data.id) updated")
    }
} catch {
    // TODO: handle error
}

Contributing

Please help improve this SDK! Contributions welcome.

License

The MIT License (MIT)

About

A basic Swift SDK for the MailerLite API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages