(self, apiKey: str, params={})
| 2922 | return await self.privatePostAccountApiKeysCreate(self.extend(request, params)) |
| 2923 | |
| 2924 | async def revoke_api_key(self, apiKey: str, params={}): |
| 2925 | operationType = 'revoke_api_key' |
| 2926 | sigPayload = { |
| 2927 | 'api_key': apiKey, |
| 2928 | } |
| 2929 | request = self.post_action_request(operationType, sigPayload, params) |
| 2930 | return await self.privatePostAccountApiKeysRevoke(self.extend(request, params)) |
| 2931 | |
| 2932 | async def fetch_api_keys(self, params={}): |
| 2933 | operationType = 'list_api_keys' |
nothing calls this directly
no test coverage detected