listForms
GET
/api/v1/forms
const url = 'https://example.com/api/v1/forms';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/formsReturns every Form Data Source the current user can access, each with name, description, published revision number, the caller’s effective capabilities, and the caller’s own submission counts (drafts, submitted, changes requested). A global Owner sees all forms; everyone else sees forms they created or hold a grant on. Backs the Forms portal and operator navigation.
Responses
Section titled “ Responses ”Accessible Form summaries under data.items