/  Yamcs HTTP API  /  Clients  /  Get Client

Get ClientΒΆ

Get a client

Warning

It is recommended to avoid using this method. It dates from a time when clients were not knowledgeable about Yamcs and their state had to be managed server-side. Nowadays we are favouring stateless APIs and leave state management entirely to the client software.

URI Template

GET /api/clients/{id}
{id}

Response Type

interface ClientInfo {
  id: number;
  username: string;
  applicationName: string;
  address: string;
  instance: string;
  processorName: string;
  state: ClientState;
  loginTime: string;  // RFC 3339
}

Related Types

enum ClientState {
  CONNECTED = "CONNECTED",
  DISCONNECTED = "DISCONNECTED",
}