Function ApiKeyApiAxiosParamCreator
- ApiKeyApiAxiosParamCreator(configuration?): {
createKey: ((app: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
getKeys: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
revokeKey: ((key: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
} Returns {
createKey: ((app: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
getKeys: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
revokeKey: ((key: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
}
createKey: ((app: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (app, options?): Promise<RequestArgs>
Parameters
- app: string
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
getKeys: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (options?): Promise<RequestArgs>
Parameters
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
revokeKey: ((key: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (key, options?): Promise<RequestArgs>
Parameters
- key: string
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
ApiKeyApi - axios parameter creator
Export