Get All Account Members
Get All Account Members
https://api.moltin.com/v2/account-members
Parameters
Headers
Name | Required | Type | Description |
---|---|---|---|
Authorization | Required | string | The Bearer token required to get access to the API. |
Query parameters
Name | Required | Type | Description |
---|---|---|---|
filter | Optional | string | Filter attributes. For more information, see the Filtering account members section. |
sort | Optional | 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. |
You can use pagination with this resource. For more information, see pagination.
Request Examples
Curl
curl -X GET https://api.moltin.com/v2/account-members \
-H "Authorization: Bearer XXXX"
JavaScript SDK
const MoltinGateway = require("@moltin/sdk").gateway;
const Moltin = MoltinGateway({
client_id: "X",
client_secret: "X",
});
Moltin.AccountMembers.All().then((acc) => {
// Do something
});
Response Example
200 OK
{
"meta": {
"page": {
"limit": 100,
"offset": 0,
"current": 1,
"total": 1
},
"results": {
"total": 2
}
},
"data": [
{
"id": "908f7849-60da-4e4a-a3b1-51d4cbe3b953",
"type": "account_member",
"name": "Ron Swanson",
"email": "ron@swanson.com",
"links": {
"self": "https://api.moltin.com/v2/account-members/908f7849-60da-4e4a-a3b1-51d4cbe3b953"
},
"meta": {
"timestamps": {
"created_at": "2021-02-23T09:40:33.882Z",
"updated_at": "2021-02-23T09:40:33.882Z"
}
}
},
{
"id": "0ff71321-f7ae-4400-abc2-d7919a78d429",
"type": "account_member",
"name": "John Smith",
"email": "john@smith.com",
"links": {
"self": "https://api.moltin.com/v2/account-members/0ff71321-f7ae-4400-abc2-d7919a78d429"
},
"meta": {
"timestamps": {
"created_at": "2021-03-15T16:18:10.883Z",
"updated_at": "2021-03-15T16:18:10.883Z"
}
}
}
],
"links": {
"current": "https://api.moltin.com/v2/account-members?page[offset]=0&page[limit]=100",
"first": "https://api.moltin.com/v2/account-members?page[offset]=0&page[limit]=100",
"last": "https://api.moltin.com/v2/account-members?page[offset]=0&page[limit]=100",
"next": "null",
"prev": "null"
}
}