Add limit group member
PUT
/providers/{providerID}/limit-groups/{groupID}/members/{participantID}
Add a participant to a limit group. Returns 200 with the membership. Idempotent: adding a current member returns the existing membership.
Auth: API key or bearer token. Scoped to the calling provider.
Request
curl -X PUT https://api.moov.money/providers/{providerID}/limit-groups/{groupID}/members/{participantID}Responses
The request completed successfully.
{
"member": {
"addedOn": "2026-08-31T12:00:00Z",
"externalID": "customer-abc-123"
}
}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.
participantID
string
requiredThe participant’s
participantID, or your externalID for them. Both
resolve to the same participant.Response
Response envelope for add limit group member; the membership is nested under
member.member
object
requiredThe group membership.
Show child attributes
member
addedOn
string<date-time>
requiredWhen the participant was added to the group.
externalID
string
requiredYour identifier for the participant.