Basic

Fetch List Memberships Ordered by ID

Fetch the memberships of a list in order sorted by the recordId of the records in the list.

The recordIds are sorted in ascending order if an after offset or no offset is provided. If only a before offset is provided, then the records are sorted in descending order.

The after offset parameter will take precedence over the before offset in a case where both are provided.

get/crm/v3/lists/{listId}/memberships

Path parameters

listIdstring required

The ILS ID of the list.

Query parameters

afterstring

The paging offset token for the page that comes after the previously requested records.

If provided, then the records in the response will be the records following the offset, sorted in ascending order. Takes precedence over the before offset.

beforestring

The paging offset token for the page that comes before the previously requested records.

If provided, then the records in the response will be the records preceding the offset, sorted in descending order.

limitinteger

The number of records to return in the response. The maximum limit is 250.

Response

successful operation

totalinteger

The total number of records that match the query.