v1
latestOpenAPI 3.1.02026-08-065163115.0 KBInvites
Create invite
Creates and sends an invite to the given email address. Returns the created invite, including its ID for use in the cancel endpoint.
post/v1/businesses/{client_id}/invites
Path parameters
client_idinteger required
Example:123
The ID of the business.
Request body
Example request
{
"email": "jane.doe@example.com",
"role_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"payment_types": [
"cards",
"reimbursements"
]
}Response
Created
Example response
{
"id": 99,
"email": "jane.doe@example.com",
"role_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"role": "Team Member",
"payment_types": [
"cards",
"reimbursements"
],
"created": "2026-05-01T00:00:00Z",
"updated": "2026-05-01T00:00:00Z"
}