Skip to main content
The Typeform plugin syncs data locally. Use corsair.typeform.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Forms

Path: typeform.db.forms.search
const rows = await corsair.typeform.db.forms.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
titlestringequals, contains, startsWith, endsWith, in
typestringequals, contains, startsWith, endsWith, in
created_atstringequals, contains, startsWith, endsWith, in
last_updated_atstringequals, contains, startsWith, endsWith, in
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Images

Path: typeform.db.images.search
const rows = await corsair.typeform.db.images.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
srcstringequals, contains, startsWith, endsWith, in
widthnumberequals, gt, gte, lt, lte, in
heightnumberequals, gt, gte, lt, lte, in
avg_colorstringequals, contains, startsWith, endsWith, in
file_namestringequals, contains, startsWith, endsWith, in
has_alphabooleanequals
media_typestringequals, contains, startsWith, endsWith, in
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Responses

Path: typeform.db.responses.search
const rows = await corsair.typeform.db.responses.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
response_idstringequals, contains, startsWith, endsWith, in
form_idstringequals, contains, startsWith, endsWith, in
submitted_atstringequals, contains, startsWith, endsWith, in
landed_atstringequals, contains, startsWith, endsWith, in
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Themes

Path: typeform.db.themes.search
const rows = await corsair.typeform.db.themes.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
fontstringequals, contains, startsWith, endsWith, in
visibilitystringequals, contains, startsWith, endsWith, in
rounded_cornersstringequals, contains, startsWith, endsWith, in
has_transparent_buttonbooleanequals
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Webhook Configs

Path: typeform.db.webhookConfigs.search
const rows = await corsair.typeform.db.webhookConfigs.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
tagstringequals, contains, startsWith, endsWith, in
urlstringequals, contains, startsWith, endsWith, in
enabledbooleanequals
form_idstringequals, contains, startsWith, endsWith, in
created_atstringequals, contains, startsWith, endsWith, in
updated_atstringequals, contains, startsWith, endsWith, in
verify_sslbooleanequals
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Workspaces

Path: typeform.db.workspaces.search
const rows = await corsair.typeform.db.workspaces.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
hrefstringequals, contains, startsWith, endsWith, in
sharedbooleanequals
defaultbooleanequals
account_idstringequals, contains, startsWith, endsWith, in
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.