Invitations
Create an UMA invitation
Create an UMA invitation from a given platform customer.
post/invitations
Request body
Example request
{
"inviterUma": "$inviter@uma.domain",
"firstName": "Alice",
"amountToSend": 12550,
"expiresAt": "2025-09-01T14:30:00Z"
}Response
Invitation created 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
}
}
}