Yourfintech
Yourfintech
Yourfintech
  • Yourfintech
  • Trading Platform Overview
  • Socket Integration
    • JSON format socket
      • General messages structure
      • Server messages spec
      • Client messages spec
      • Root Models
    • Yft Manager API
      • General messages structure
      • Server message spec
      • Client Messages spec
      • Root Models
  • Trading Platform Integration
    • Account Integration
      • ProtoFile
    • Trading Engine Integration
      • ProtoFile
    • Trading Settings Integration
      • ProtoFile
Powered by GitBook
On this page
  1. Socket Integration
  2. JSON format socket

Client messages spec

The YftJsonIntegrationClientMessage enum defines the different types of messages that the client can send to the server. Each message type corresponds to specific information or events that the server will handle.

Message Types:

  • AuthRequest

AuthRequest

The AuthRequest message communicates the outcome of an authentication attempt by the client.

{
  "message_id": "test",
  "message_type": {
    "client_message": {
      "auth_request": {
        "secret_key": "secret"
      }
    }
  }
}

PreviousServer messages specNextRoot Models

Last updated 5 months ago