π°Form
Last updated
Was this helpful?
Create form submissions on behalf of a guest
POST v1/guests/:guest_id/form
venue_id*
String
The venue ID that the form is applicable for. Must be exactly 12 alphanumeric characters.
source
String
Source of the form submission. Must be either "web" or "in-venue-form". Defaults to "web"
form_id
String
A unique ID of your choice to identify the form the user has filled in. Optional.
venue_id: Required. Must be exactly 12 alphanumeric characters (a-z, A-Z, 0-9)
form_id: Optional. Can be any string value
source: Must be either "web" or "in-venue-form". Defaults to "web" if not provided
The organisation_id is automatically added from your authentication context
The guest_id is taken from the URL parameter
If form_id is not provided, it defaults to null
Returns the created form data object.
Last updated
Was this helpful?
Was this helpful?
{
message: string;
errors: {
code: string;
expected?: string;
received?: string;
path: string[];
}[];
}
