For AI agents: visit https://docs.ohyay.co/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
https://us-central1-ohyay-prod-d7acf.cloudfunctions.net/ohyayapi/create-invites
interface InviteRequest {
userId: string;
wsid: string;
invites: {
to?: string; // Email, optional
validFrom?: number; // epoch millis, optional
validUntil?: number; // epoch millis, optional
displayName?: string; // Name to pre-populate on the landing page, optional
subtitle?: string; // Subtitle to pre-populate on the landing page, optional
tags?: { [tag: string]: boolean }; // prepopulated tags for user, optional
}[];
}
interface InviteResponse {
links: string[];
}