← Tools Reference

Feathery

Feathery integration (Productivity, Marketing). Imported from open-connector.

API key12 toolshttps://api.feathery.io
GET
feathery_get_account_info
Retrieve Feathery team and account information for the authenticated API key.

/api/account/

GET
feathery_list_forms
List Feathery forms, optionally filtered by tags.

/api/form/

1 parameter
ParamTypeRequiredDescription
tagsarrayoptionalOnly return forms that have all of these Feathery tags.
GET
feathery_get_form_schema
Retrieve the complete schema for one Feathery form.

/api/form/{form_id}/schema/

1 parameter
ParamTypeRequiredDescription
form_idstringrequiredThe Feathery form ID.
POST
feathery_create_or_update_form_submissions
Create or update Feathery form submissions for one form.

/api/form/{form_id}/submission/

2 parameters
ParamTypeRequiredDescription
form_idstringrequiredThe Feathery form ID.
submissionsarrayrequiredThe Feathery submission objects to create or update.
GET
feathery_list_hidden_fields
List hidden fields configured in the Feathery account.

/api/field/hidden/

POST
feathery_create_hidden_field
Create a Feathery hidden field by field ID.

/api/field/hidden/

1 parameter
ParamTypeRequiredDescription
field_idstringrequiredThe Feathery hidden field ID.
DELETE
feathery_delete_hidden_field
Delete one Feathery hidden field by field ID.

/api/field/hidden/{fieldId}/

2 parameters
ParamTypeRequiredDescription
field_idstringrequiredThe Feathery hidden field ID.
fieldIdstringrequiredPath parameter: fieldId
GET
feathery_list_users
List Feathery users with optional creation-time and field-value filters.

/api/user/

4 parameters
ParamTypeRequiredDescription
created_afterstringoptionalReturn users created on or after this ISO timestamp.
created_beforestringoptionalReturn users created on or before this ISO timestamp.
filter_field_idstringoptionalThe form or hidden field ID used to filter users.
filter_field_valuestringoptionalThe value matched for filter_field_id.
GET
feathery_get_user_data
Retrieve all Feathery field data, optionally scoped to one user.

/api/user/field/

1 parameter
ParamTypeRequiredDescription
idstringoptionalThe Feathery user ID whose field data should be returned.
GET
feathery_get_user_session
Retrieve Feathery form session and progress data for one user.

/api/user/{user_id}/session/

1 parameter
ParamTypeRequiredDescription
user_idstringrequiredThe Feathery user ID.
POST
feathery_create_or_fetch_user
Create a Feathery user or fetch the existing user by ID.

/api/user/

1 parameter
ParamTypeRequiredDescription
idstringrequiredThe Feathery user ID.
DELETE
feathery_delete_user
Delete one Feathery user by ID.

/api/user/{id}/

1 parameter
ParamTypeRequiredDescription
idstringrequiredThe Feathery user ID.