Invitations
Claim an UMA invitation
Claim an UMA invitation by associating it with an invitee UMA address.
When an invitation is successfully claimed:
- The invitation status changes from PENDING to CLAIMED
- The invitee UMA address is associated with the invitation
- An INVITATION_CLAIMED webhook is triggered to notify the platform that created the invitation
This endpoint allows customers to accept invitations sent to them by other UMA customers.
post/invitations/{invitationCode}/claim
Path parameters
invitationCodestring required
The code of the invitation to claim
Request body
Example request
{
"inviteeUma": "$invitee@uma.domain"
}Response
Invitation claimed successfully
Example response
{
"code": "019542f5",
"createdAt": "2025-09-01T14:30:00Z",
"claimedAt": "2025-09-01T14:30:00Z",
"url": "https://uma.me/i/019542f5",
"expiresAt": "2025-09-01T14:30:00Z",
"inviterUma": "$inviter@uma.domain",
"inviteeUma": "$invitee@uma.domain",
"status": "PENDING",
"firstName": "Jane",
"amountToSend": {
"amount": 12550,
"currency": {
"code": "USD",
"name": "United States Dollar",
"symbol": "$",
"decimals": 2
}
}
}