> 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 # GetFunctionSpiConfiguration # Package: functions # Namespace: FunctionSpiConfigurations # Method link: https://dev.wix.com/docs/api-reference/business-management/functions/function-spi-configurations/get-function-spi-configuration.md ## Permission Scopes: Manage Functions: SCOPE.DC-FUNCTIONS.MANAGE-FUNCTIONS ## Introduction Retrieves a service plugin configuration by ID. --- ## REST API ### Schema ``` Method: getFunctionSpiConfiguration Description: Retrieves a service plugin configuration by GUID. URL: https://www.wixapis.com/functions/v1/function-spi-configurations/{functionSpiConfigurationId} Method: GET # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: functionSpiConfigurationId Method parameters: param name: functionSpiConfigurationId | type: none | required: true Return type: GetFunctionSpiConfigurationResponse - name: functionSpiConfiguration | type: FunctionSpiConfiguration | description: The retrieved service plugin configuration. - name: id | type: string | description: Service plugin configuration GUID. - name: revision | type: string | description: Service plugin configuration revision. - name: createdDate | type: string | description: Date and time the service plugin configuration was created. - name: updatedDate | type: string | description: Date and time the service plugin configuration was last updated. - name: functionId | type: string | description: GUID of the function this service plugin configuration belongs to. - name: configuration | type: object | description: Service plugin configuration data. This must adhere to the schema defined by the function type that the function is based on. Learn more about [service plugins and Wix Functions](https://dev.wix.com/docs/api-reference/business-management/functions/about-service-plugins-and-wix-functions.md). ``` ### Examples ### Get Function Spi Configuration ```curl curl --request GET \ https://www.wixapis.com/functions/v1/spi-configurations/00019845-6387-4006-9e9b-366caffed188 \ --header "Content-Type: application/json" \ --header "Authorization: " ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.functions.FunctionSpiConfigurations.getFunctionSpiConfiguration(functionSpiConfigurationId) Description: Retrieves a service plugin configuration by GUID. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: functionSpiConfigurationId Method parameters: param name: functionSpiConfigurationId | type: string | description: GUID of the service plugin configuration to retrieve. | required: true Return type: PROMISE - name: _id | type: string | description: Service plugin configuration GUID. - name: revision | type: string | description: Service plugin configuration revision. - name: _createdDate | type: Date | description: Date and time the service plugin configuration was created. - name: _updatedDate | type: Date | description: Date and time the service plugin configuration was last updated. - name: functionId | type: string | description: GUID of the function this service plugin configuration belongs to. - name: configuration | type: object | description: Service plugin configuration data. This must adhere to the schema defined by the function type that the function is based on. Learn more about [service plugins and Wix Functions](https://dev.wix.com/docs/api-reference/business-management/functions/about-service-plugins-and-wix-functions.md). ``` ### Examples ### getFunctionSpiConfiguration ```javascript import { functionSpiConfigurations } from '@wix/functions'; async function getFunctionSpiConfiguration(functionSpiConfigurationId) { const response = await functionSpiConfigurations.getFunctionSpiConfiguration(functionSpiConfigurationId); }; ``` ### getFunctionSpiConfiguration (with elevated permissions) ```javascript import { functionSpiConfigurations } from '@wix/functions'; import { auth } from '@wix/essentials'; async function myGetFunctionSpiConfigurationMethod(functionSpiConfigurationId) { const elevatedGetFunctionSpiConfiguration = auth.elevate(functionSpiConfigurations.getFunctionSpiConfiguration); const response = await elevatedGetFunctionSpiConfiguration(functionSpiConfigurationId); } ``` ### getFunctionSpiConfiguration (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 { functionSpiConfigurations } from '@wix/functions'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { functionSpiConfigurations }, // Include the auth strategy and host as relevant }); async function getFunctionSpiConfiguration(functionSpiConfigurationId) { const response = await myWixClient.functionSpiConfigurations.getFunctionSpiConfiguration(functionSpiConfigurationId); }; ``` ---