Available Tools
Review Types a Form Can Accept
Each can be turned on or off, and each has its own button label you can reword. All are enabled by default, so name the ones you want turned off.
Legacy and AI-Native Forms
Every form returned bylist_forms carries a form_kind:
Which Tool Gives Which Numbers
The two stats sources are not interchangeable:get_form_statsreturns review counts by type (video_feeds_count,audio_feeds_count,text_feeds_count) and how many times the form was opened (logs_count).list_formsreturns the numbers the dashboard shows:hits,reviews, andconversion_rate.
list_forms.
Translating a Form
Translation is a two-step round trip:- Call
get_form_translationwith aformUniqueIdand atargetLanguagecode (for examplees,fr,hi,ar). It returns the translatable strings keyed by translation key, such aslanding__titleandthankyou_title, plus alanguage_id. - Translate the values, then pass them back to
save_form_translationwith the same keys and thatlanguage_id.
Translations are supported on legacy forms only. The first request for a new language generates the translation and can be slow. If it times out, call again, as the result is cached after the first run.Saving a translation adds a language to the form; it does not change the form’s base copy.