Update UpdateApiKeyParamsV5

This commit is contained in:
Karim Sakhibgareev
2024-06-04 18:02:51 +01:00
parent 23edc9eaf4
commit 95ee9bb807
2 changed files with 5 additions and 3 deletions

View File

@@ -1345,10 +1345,11 @@ export class RestClientV5 extends BaseRestClient {
/** /**
* This endpoint modifies the settings of a sub API key. * This endpoint modifies the settings of a sub API key.
* Use the API key pending to be modified to call the endpoint. * Use the API key pending to be modified to call the endpoint or use master account api key to manage its sub account api key.
* Only the API key that calls this interface can be modified. * The API key must have one of the below permissions in order to call this endpoint
* *
* The API key must own "Account Transfer" permission to be allowed to call this API endpoint. * - sub API key: "Account Transfer", "Sub Member Transfer"
* - master API Key: "Account Transfer", "Sub Member Transfer", "Withdrawal"
*/ */
updateSubApiKey( updateSubApiKey(
params: UpdateApiKeyParamsV5, params: UpdateApiKeyParamsV5,

View File

@@ -25,6 +25,7 @@ export interface CreateSubApiKeyParamsV5 {
} }
export interface UpdateApiKeyParamsV5 { export interface UpdateApiKeyParamsV5 {
apikey?: string;
readOnly?: 0 | 1; readOnly?: 0 | 1;
ips?: string[]; ips?: string[];
permissions: PermissionsV5; permissions: PermissionsV5;