Skip to main content

Get a List of Unassigned Account Members

GET 

/v2/accounts/:accountID/account-memberships/unassigned-account-members

Use this resource to get a list of all account members that are not assigned to an account.

Filtering

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

OperatorDescription
eqChecks whether the values of two operands are equal. If the values are equal, the condition is true.
likeChecks if the operand contains the specified string. You can use wildcard characters in operand.

The following attributes are available for filtering unassigned account members.

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

You can use pagination with this resource. For more information, see pagination.

Request

Path Parameters

    accountID stringrequired

    The ID of the account for which you want to get the list of unassigned account members.

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...