Skip to main content

Get Multiple Entries Endpoint

Overview

Retrieves multiple entries from a specific data source within an app. This endpoint supports advanced filtering, sorting, pagination, and partial field selection.

Endpoint

POST https://api.myboardtoday.com/app/:app_id/source/:source_id/entries

Path Parameters

ParameterTypeRequiredDescription
app_idUUIDYesUnique identifier of the app.
source_idUUIDYesUnique identifier of the source.

Headers

HeaderRequiredDescription
x-api-keyYesAPI key used for authentication.

Query Parameters

ParameterTypeRequiredDefaultDescription
order_paramsObjectNo{}Key-value pairs where the key is a field name and the value is the sort order ("asc" or "desc").
filter_paramsArray of ArraysNo[]Array of AND/OR filter conditions. Each inner array represents AND conditions; outer array represents OR conditions.
page_sizeIntegerNo10Maximum number of entries per page.
page_tokenStringNo""Token used for paginated requests. Typically returned in previous responses as next_token.
limitIntegerNonullMaximum number of entries to retrieve.
fieldsArray of StringsNo[]List of specific fields to include in the response.
use_namedBooleanNofalseIf true, use named fields in the response.
modeStringNo"entries_only"Controls the structure of the returned data. Supported values: entries_only, schema_entries, key_fields, sample, object_schema_fields, schema_only.
refObjectNo{}Configuration for fetching reference fields. Keys should be entry field names; values should be corresponding query parameter objects.

filter_params Example

[
[
{ "field": "name", "op": "=", "val": "James" },
{ "field": "age", "op": ">", "val": 30 }
],
[{ "field": "name", "op": "=", "val": "Bond" }]
]

This example will return entries that match either:

  • name = "James" AND age > 30, or
  • name = "Bond"

Supported Filter Operators

  • =
  • >
  • <
  • >=
  • <=
  • not
  • in
  • not_in
  • contains
  • not_contains
  • starts_with
  • between
  • exists
  • arrayContainsField

Report Bugs, Request New Features, and Win $50 Every Month

We value your precious feedback. Please contact us when you find a bug or would like to request a new feature. (In the main panel, click on the bob logo on the top left corner, then in the Dropdown menu click on “contact for bugs or new features”). Every month we will select an “opinion leader” and reward him/her with $50 in cash.