I am creating a C# application and i want to know JIRA server date time .
Hello,
You can use the serverinfo REST end point.
For more details, take a look at: https://docs.atlassian.com/jira/REST/latest/#d2e3079
The output is:
{
"baseUrl": "http://localhost:8080/jira",
"version": "5.0-SNAPSHOT",
"versionNumbers": [
5,
0,
0
],
"buildNumber": 582,
"buildDate": "2014-11-11T05:43:47.935+0000",
"serverTime": "2014-11-11T05:43:47.935+0000",
"scmInfo": "1f51473f5c7b75c1a69a0090f4832cdc5053702a",
"buildPartnerName": "Example Partner Co.",
"serverTitle": "My Shiny New JIRA Server"
}![]()
-- Pedro
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.