A valid request URL is required to generate request examples
{ "name": "apppointment_request", "schema": { "type": "object", "properties": { "email": { "type": "string", "description": "The email address of the user." }, "age": { "type": "number", "description": "The age of the user." } }, "required": [ "email" ], "additionalProperties": false }, "strict": true }
Example: Bearer <YOUR_API_KEY>
Bearer <YOUR_API_KEY>
The context to generate the event config schema from.
"firstName: string, lastName: string, phoneNumber: string"
The key of the EventConfig in snake_case
"apppointment_request"
Show child attributes
The type of the schema, always "object".
"object"
Properties defined in the schema.
{ "email": { "type": "string", "description": "The email address of the user." }, "age": { "type": "number", "description": "The age of the user." }}
List of required property names.
["email"]
Whether additional properties are allowed.
false
Whether the schema is strict.
true