Skip to main content

Get all Account Members

GET 

/v2/account-members

Get all account members contained within your store.

Filtering

The following operators and attributes are available for filtering account members.

AttributeTypeOperatorExample
emailstringeq / likeeq(email,ronswanson@example.com)
namestringeq / likelike(name,*swan*)

Request

Query Parameters

    page[limit] int64

    The number of records per page.

    page[offset] int64

    Possible values: <= 10000

    The number of records to offset the results by.

    sort string

    Supported attributes are created_at, email, id, name, or updated_at. When specified, the results are sorted in ascending order based on the value of the field. To sort in descending order, prefix the attribute with -, for example, -updated_at. The default sort order is created_at in descending order. For more information, see Sorting.

    filter string

    Specifies the filter attributes.

Responses

OK

Schema
    data object[]
    meta object
    page object
    limit integer

    The maximum number of records per page for this response. You can set this value up to 100.

    current integer

    The current page.

    offset integer

    The current offset by number of records, not pages. Offset is zero-based.

    total integer

    The total page count.

    results object
    total integer

    The total number of results after applying filters, if any, or all results.

    links object
    current uri

    Always the current page.

    first uri

    Always the first page.

    last uri

    Always null if there is only one page.

    next string

    Always null if there is only one page.

    prev string

    Always null if the user is on the first page.

Loading...