v3

latestOpenAPI 3.0.02026-07-311784111.3 MB
Authentication
WebSocket Only
Private

Gracefully terminate the current WebSocket connection and optionally invalidate all tokens associated with the session.

This method provides a clean way to close WebSocket connections while preserving active orders when Cancel On Disconnect (COD) is enabled.

Use Cases:

  • Clean Shutdown: Properly close WebSocket connections during application shutdown or restart
  • Order Preservation: Close connections without triggering order cancellations when COD is enabled
  • Session Management: Invalidate tokens to ensure security when closing connections
  • Maintenance Operations: Temporarily disconnect for system maintenance without affecting trading positions

Cancel On Disconnect (COD) Behavior:

When Cancel On Disconnect is enabled for your connection, this method provides a safe way to close the connection without triggering automatic order cancellations. This is different from other disconnection scenarios:

  • Graceful logout (this method): Orders are NOT cancelled, even if COD is enabled
  • Unexpected disconnection: Orders are cancelled if COD is enabled
  • Inactivity timeout: Orders are cancelled if COD is enabled
  • Heartbeat failure: Orders are cancelled if COD is enabled

This distinction allows you to perform planned disconnections (e.g., for maintenance, updates, or reconnection) while preserving your active orders.

WebSocket Only:

This method is designed exclusively for WebSocket connections. Attempting to use it via REST/HTTP will result in a 400 error response.

Note: This method has no response. The WebSocket connection is closed immediately after the request is processed.

Try in API console

get/private/logout

Query parameters

invalidate_tokenboolean

<b>Token Invalidation:</b> By default, all tokens created during the current session are invalidated when you call this method. You can control this behavior using this parameter: <ul><li><b>invalidate_token=true</b> (default): All session tokens are invalidated, requiring re-authentication for new connections</li><li><b>invalidate_token=false</b>: Tokens remain valid, allowing you to reconnect using the same authentication</li></ul>

Response

Connection closed