List limit group members
GET
/providers/{providerID}/limit-groups/{groupID}/members
List the members of a limit group, keyed by your external ID for each participant. Returns an empty list when none exist.
Pagination is cursor-based. Omit cursor to fetch the first page; use
nextCursor from each response to fetch the next page.
Auth: API key or bearer token. Scoped to the calling provider.
Responses
The request completed successfully.
{
"members": [
{
"addedOn": "2026-08-31T12:00:00Z",
"externalID": "customer-abc-123"
}
]
}Malformed request: the body or headers failed validation.
Authentication missing, invalid, or insufficient.
Authentication present but the action is forbidden for this principal/claim.
The requested resource was not found.
Headers
X-Moov-Version
stringSet this header to the API version being targeted (e.g.
v2026.07.00). When omitted, the server applies its default version.Path parameters
providerID
string
requiredYour provider account ID.
groupID
string
requiredIdentifier of the limit group.
Query parameters
cursor
stringOpaque pagination cursor from a previous response’s
nextCursor. Omit to fetch the first page.limit
integer
<int32>Maximum number of members to return. Defaults to 25; values outside 1-100 return 400.
Response
Response envelope for list limit group members.
nextCursor
stringOpaque cursor for the next page; absent on the last page.
hasMore
boolean
requiredWhether another page of results follows this one.
members
array<object>
requiredThe page of group members.
Show child attributes
members[]
addedOn
string<date-time>When the participant was added to the group.
externalID
stringYour identifier for the participant.