MCPcopy Create free account
hub / github.com/ccxt/ccxt / revoke_api_key

Method revoke_api_key

python/ccxt/async_support/pacifica.py:2924–2930  ·  view source on GitHub ↗
(self, apiKey: str, params={})

Source from the content-addressed store, hash-verified

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'

Callers

nothing calls this directly

Calls 3

post_action_requestMethod · 0.95
extendMethod · 0.45

Tested by

no test coverage detected