> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # ListFormsProvidersConfigs # Package: forms # Namespace: FormSchemaService # Method link: https://dev.wix.com/docs/api-reference/crm/forms/form-schemas/list-forms-providers-configs.md ## Permission Scopes: Manage Challenges: SCOPE.CHALLENGES.MANAGE ## Introduction Retrieves a list of configurations set by apps that provide the ability to create form schemas. For example, Wix Forms or Wix Bookings. --- ## REST API ### Schema ``` Method: listFormsProvidersConfigs Description: Retrieves a list of configurations set by apps that provide the ability to create form schemas. For example, Wix Forms or Wix Bookings. URL: https://www.wixapis.com/v4/forms/providers-config Method: GET Return type: ListFormsProvidersConfigsResponse - name: configs | type: array | description: List of configurations set by form schema providers. - name: namespace | type: string | description: Namespace of the app which provides this configuration - name: appId | type: string | description: GUID of app which provides this config. - name: restrictions | type: FormProviderRestrictions | description: Restrictions on form schemas set by this app. - name: maxForms | type: integer | description: Maximum number of forms allowed per namespace. Doesn't include deleted forms. - name: maxFields | type: integer | description: Maximum number of fields allowed per form. This includes all field types and display elements within a single form. - name: maxDeletedForms | type: integer | description: Maximum number of deleted forms allowed per namespace. Forms in the trash bin count toward this limit. ``` ### Examples ### List Forms Providers Configs Lists configurations set by apps providing ability to create forms under their domain ```curl curl -X GET \ 'https://www.wixapis.com/form-schema-service/v4/forms/providers-config' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.forms.FormSchemaService.listFormsProvidersConfigs() Description: Retrieves a list of configurations set by apps that provide the ability to create form schemas. For example, Wix Forms or Wix Bookings. Return type: PROMISE - name: configs | type: array | description: List of configurations set by form schema providers. - name: namespace | type: string | description: Namespace of the app which provides this configuration - name: appId | type: string | description: GUID of app which provides this config. - name: restrictions | type: FormProviderRestrictions | description: Restrictions on form schemas set by this app. - name: maxForms | type: integer | description: Maximum number of forms allowed per namespace. Doesn't include deleted forms. - name: maxFields | type: integer | description: Maximum number of fields allowed per form. This includes all field types and display elements within a single form. - name: maxDeletedForms | type: integer | description: Maximum number of deleted forms allowed per namespace. Forms in the trash bin count toward this limit. ``` ### Examples ### listFormsProvidersConfigs ```javascript import { forms } from '@wix/forms'; async function listFormsProvidersConfigs() { const response = await forms.listFormsProvidersConfigs(); }; ``` ### listFormsProvidersConfigs (with elevated permissions) ```javascript import { forms } from '@wix/forms'; import { auth } from '@wix/essentials'; async function myListFormsProvidersConfigsMethod() { const elevatedListFormsProvidersConfigs = auth.elevate(forms.listFormsProvidersConfigs); const response = await elevatedListFormsProvidersConfigs(); } ``` ### listFormsProvidersConfigs (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { forms } from '@wix/forms'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { forms }, // Include the auth strategy and host as relevant }); async function listFormsProvidersConfigs() { const response = await myWixClient.forms.listFormsProvidersConfigs(); }; ``` ---