Custom Form Logic API Reference

The API on these pages describe how to write APEX to interact with GoMeddo’s reservation form.

If you are looking to integrate an external application into GoMeddo using the GoMeddo API, you can refer to this page:

REST Endpoints

This article provides the full reference of every method and object available to you as part of the custom form logic feature. For other articles on this topic, see:


  • B25.FormEvent

    Represent an event, triggered by the user interacting with the form.

  • B25.Form

    This class lets you inspect the current form state as well as perform actions on it, such as adding handlers or updating values.

  • B25.FormRecord

    Represents a record on the form. Contains a reference to the actual SObject.

  • B25.FormRecordCollection

    A wrapper around a collection of B25.FormRecords, with some additional methods to manipulate the collection.

  • B25.FormField

    This class represents a field on the form. This can be either a field on the main form, or on a related list.

  • B25.FormEventHandler

    Extend this class to create your own handlers that react to events on the form.

  • B25.Lookup

    Extension of B25.FormField, that represents a lookup on the form. Supports adding a search handler to generate custom results.

  • B25.RelatedList

    A related list represents a list of records present on a form.

  • B25.SearchContext

    This class represents a search being performed by the user. It allows you to get more information about the context of the search, as well as narrowing down the search results with additional conditions.

  • B25.SearchHandler

    Extend this class to create your own handlers that react to searches on the form, allowing you to customize the results.

  • B25.SearchResult

    This class represents one result shown to the user when they search in a lookup or a list.