ResponseHeader

  • The server sends a header object with all responses.

  • This header includes a required responseTimestamp field, formatted as an int64 string representing milliseconds since epoch.

  • Receivers should validate the responseTimestamp to ensure it's within ± 60 seconds of the current time.

Header object that is defined on all responses sent from the server.

JSON representation
{
  "responseTimestamp": string
}
Fields
responseTimestamp

string (int64 format)

REQUIRED: Timestamp of this response represented as milliseconds since epoch. The receiver should verify that this timestamp is ± 60s of 'now'.