UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

21 lines (20 loc) 882 B
import Service from "../../service"; import Client from "../../client"; import { IRequest } from "../../typings/requestOptions"; import { GenerateClientKeyResponse } from "../../typings/management/models"; /** * API handler for ClientKeyCompanyLevelApi */ export declare class ClientKeyCompanyLevelApi extends Service { private readonly API_BASEPATH; private baseUrl; constructor(client: Client); /** * @summary Generate new client key * @param companyId {@link string } The unique identifier of the company account. * @param apiCredentialId {@link string } Unique identifier of the API credential. * @param requestOptions {@link IRequest.Options } * @return {@link GenerateClientKeyResponse } */ generateNewClientKey(companyId: string, apiCredentialId: string, requestOptions?: IRequest.Options): Promise<GenerateClientKeyResponse>; }