(params = {})
| 3045 | return await this.privatePostAgentBind(this.extend(request, params)); |
| 3046 | } |
| 3047 | async createApiKey(params = {}) { |
| 3048 | const operationType = 'create_api_key'; |
| 3049 | const sigPayload = {}; |
| 3050 | const request = this.postActionRequest(operationType, sigPayload, params); |
| 3051 | return await this.privatePostAccountApiKeysCreate(this.extend(request, params)); |
| 3052 | } |
| 3053 | async revokeApiKey(apiKey, params = {}) { |
| 3054 | const operationType = 'revoke_api_key'; |
| 3055 | const sigPayload = { |
nothing calls this directly
no test coverage detected