Skip to main content

Get a List of Unassigned Account Members

GET 

https://useast.api.elasticpath.com/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

Responses

OK

Authorization: http

name: BearerTokentype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://useast.api.elasticpath.com/v2/accounts/:accountID/account-memberships/unassigned-account-members");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://useast.api.elasticpath.com
Auth
Parameters
— pathrequired
— query
— query
— query
— query
ResponseClear

Click the Send API Request button above and see the response here!