GET api/Tsa/GetStamp/{id}

Fetch previously logged timestamp

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

TimestampResponse
NameDescriptionTypeAdditional information
ID

integer

None.

Time

date

None.

Hash

Collection of byte

None.

TimestampData

Collection of byte

None.

Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Time": "2024-09-16T11:15:38.0138881+00:00",
  "Hash": "QEA=",
  "TimestampData": "QEA=",
  "Success": true
}

application/xml, text/xml

Sample:
<TimestampResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Advania.Model.TimestampProxy">
  <Hash>QEA=</Hash>
  <ID>1</ID>
  <Success>true</Success>
  <Time>2024-09-16T11:15:38.0138881+00:00</Time>
  <TimestampData>QEA=</TimestampData>
</TimestampResponse>