Skip to main content

List subscribers

GET 

/subscriptions/subscribers

Retrieves a list of all subscribers.

Filtering

This endpoint supports filtering. For the general syntax, see Filtering.

The following attributes and operators are supported.

OperatorAttributeDescription
eqaccount_id, name, email, external_refEquals. Checks if the values of two operands are equal. If they are, the condition is true.

Request

Query Parameters

    page[offset] int64

    Possible values: <= 10000

    The current offset by number of records, not pages. Offset is zero-based. The maximum records you can offset is 10,000. If no page size is set, the page length store setting is used.

    page[limit] int64

    The maximum number of records per page for this response. You can set this value up to 100. If no page size is set, the page length store setting is used.

    filter string

Responses

Success. A list of subscribers is returned.

Schema
    data Subscriber[]
  • Array [
  • id UUID (string)

    The unique identifier.

    type SubscriptionSubscriberType (string)required

    Possible values: [subscription_subscriber]

    attributes SubscriberAttributesrequired
    account_id UUID (string)required

    The unique identifier.

    name stringrequired

    Possible values: >= 3 characters and <= 1024 characters

    The name of the subscriber.

    email emailrequired

    Possible values: >= 3 characters and <= 1024 characters

    The email of the subscriber.

    updated_at stringrequired

    The date and time a resource was updated.

    created_at stringrequired

    The date and time a resource was created.

    meta SubscriberMetarequired
    owner stringrequired

    The owner of a resource, either store or organization.

    timestamps Timestampsrequired
    updated_at stringrequired

    The date and time a resource was updated.

    created_at stringrequired

    The date and time a resource was created.

  • ]
  • links object
    anyOf
    title
Loading...