List mailing list subscriptions

List all subscriptions the user has to all mailing lists.

GET
https://identity.krystal.io/api/v1/mailing_list_subscriptions

If successful, this endpoint will return a 200 OK status.

Scopes

One of the following scopes are required to use this endpoint.

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    mailing_list_subscriptions: [ MailingListSubscription {
        mailing_list: MailingList {
            name: String
            description: String
            permalink: String
        }
        active: Boolean
        merge_fields: [ KeyValue {
            key: String
            value: String?
        } ]
    } ]
}