getDateByTimestamp
Transform numeric timestamps into readable date formats using this tool on Cal Server, simplifying time-based data conversion.
Instructions
Convert the provided timestamp to date format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ts | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ts": {
"type": "number"
}
},
"required": [
"ts"
],
"type": "object"
}