ResponseHeader

  • The server includes a header object with every response, containing key information about the response.

  • This header object always includes a responseTimestamp field, indicating when the server generated the response.

  • Recipients should validate this timestamp to ensure it's within 60 seconds of their current time for security and data integrity, rejecting any responses outside this timeframe.

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

JSON representation
{
  "responseTimestamp": {
    object (Timestamp)
  }
}
Fields
responseTimestamp

object (Timestamp)

REQUIRED: Timestamp of this response. The receiver must verify that this timestamp is ± 60s of 'now', and reject the response if it is not.