const jwtLifeSec = 24 * 60 * 60; // 1 day in seconds (3600 * 24)
const dsApiClient = new ApiClient();
dsApiClient.setBasePath(
this.configService.get<string>('docusign.base_path'),
);
const results = await dsApiClient.requestJWTUserToken(
this.configService.get<string>('docusign.integration_key'),
this.configService.get<string>('docusign.user_id'),
pthis.configService.get<string>('docusign.scope')],
this.privateKey,
jwtLifeSec,
);
I added like that ti’s not working. it’s always return expire_in : 3600
I wana more than. How can I do that Please someone help me.