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.

Request
cURL
curl -X GET https://api.moov.money/providers/{providerID}/limit-groups/{groupID}/members
Responses
200 400 401 403 404
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

string
Set 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 required
Your provider account ID.

groupID

string required
Identifier of the limit group.

Query parameters

cursor

string
Opaque 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

string
Opaque cursor for the next page; absent on the last page.

hasMore

boolean required
Whether another page of results follows this one.

members

array<object> required
The page of group members.
Show child attributes

members[]

addedOn

string<date-time>
When the participant was added to the group.

externalID

string
Your identifier for the participant.