Skip to content
Guides
API reference
stablemember:read

List seller members

Lists the people with access to a seller.

GET/v1/sellers/{sellerId}/members

Lists the people with access to a seller.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Path Parameters

sellerId*string

Query Parameters

limit?integer

Maximum number of results to return.

Formatint32
cursor?string

Opaque cursor from the previous response. Omit it on the first page.

search?string

Free-text filter. Which fields it covers depends on the resource.

sortBy?string

Field to sort by. Accepted values depend on the resource.

sortDirection?string

Sort direction: asc or desc.

Value in

  • "asc"
  • "desc"
status?array<>
emails?array<string>
names?array<string>
roles?array<string>
isOwner?boolean

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/sellers/string/members"
{  "data": [    {      "id": "string",      "email": "string",      "firstName": "string",      "lastName": null,      "avatarUrl": null,      "roleName": null,      "isOwner": true,      "status": "active",      "createdOn": "2019-08-24T14:15:22Z",      "lastLoginOn": null    }  ],  "hasNextPage": true,  "nextCursor": null,  "totalCount": null}