> 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 # RenewProgram # Package: benefitPrograms # Namespace: ProgramService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/benefit-programs/programs/renew-program.md ## Permission Scopes: Manage benefit programs: SCOPE.BENEFIT_PROGRAMS.MANAGE ## Introduction Renews the specified program. The number of available credits in each pool in the program is defined in the corresponding pool's credit configuration. --- ## REST API ### Schema ``` Method: renewProgram Description: Renews the specified program. The number of available credits in each pool in the program is defined in the corresponding pool's credit configuration. URL: https://www.wixapis.com/benefit-programs/v1/programs/renew Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: programId, idempotencyKey Method parameters: param name: idempotencyKey | type: idempotencyKey | description: Idempotency key to ensure that the request is processed only once. | required: true param name: programId | type: programId | description: GUID of the program to renew. | required: true Return type: RenewProgramResponse - name: jobId | type: string | description: Job GUID of the program renewal. Retrieve job details using the [Async Job API](https://dev.wix.com/docs/rest/business-management/async-job/introduction.md). ``` ### Examples ### RenewProgram ```curl ~~~cURL curl --request POST https://www.wixapis.com/benefit-programs/v1/programs/renew \ -H "Content-Type: application/json" \ -H "Authorization: " \ --data '{ "program_id": "e5c42e1e-cd10-4210-b483-bb59932b1fa7" }' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.benefitPrograms.ProgramService.renewProgram(programId, options) Description: Renews the specified program. The number of available credits in each pool in the program is defined in the corresponding pool's credit configuration. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: programId, options.idempotencyKey, options Method parameters: param name: options | type: RenewProgramOptions none | required: true - name: idempotencyKey | type: string | description: Idempotency key to ensure that the request is processed only once. | required: true param name: programId | type: string | description: GUID of the program to renew. | required: true Return type: PROMISE - name: jobId | type: string | description: Job GUID of the program renewal. Retrieve job details using the [Async Job API](https://dev.wix.com/docs/rest/business-management/async-job/introduction.md). ``` ### Examples ### renewProgram ```javascript import { programs } from '@wix/benefit-programs'; async function renewProgram(programId,options) { const response = await programs.renewProgram(programId,options); }; ``` ### renewProgram (with elevated permissions) ```javascript import { programs } from '@wix/benefit-programs'; import { auth } from '@wix/essentials'; async function myRenewProgramMethod(programId,options) { const elevatedRenewProgram = auth.elevate(programs.renewProgram); const response = await elevatedRenewProgram(programId,options); } ``` ### renewProgram (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 { programs } from '@wix/benefit-programs'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { programs }, // Include the auth strategy and host as relevant }); async function renewProgram(programId,options) { const response = await myWixClient.programs.renewProgram(programId,options); }; ``` ---