curl --request GET \
--url https://api.example.com/members{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"identity": "<string>",
"emailAddress": "[email protected]",
"name": "<string>"
}
],
"count": 123,
"total": 123
}Returns a list of all of the Members defined for a Customer
curl --request GET \
--url https://api.example.com/members{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"identity": "<string>",
"emailAddress": "[email protected]",
"name": "<string>"
}
],
"count": 123,
"total": 123
}The number of items to skip before starting to collect the result set
x >= 0The number of items to return
1 <= x <= 100Was this page helpful?