Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Tempo Timesheets REST API

I seem to find only old questions on this, so I'm starting a new thread.

I want to fetch all worklogs for a given Project Key. We're using Jira's cloud.

According to http://developer.tempo.io/doc/timesheets/api/rest/latest/#848933329 I should be able to access the data I want by querying http://mycompany.jira.com/rest/tempo-timesheets/3/worklogs/?projectKey=XXX however that returns a 404.

I assume this is either because of some problems with authentication or because the docs are outdated. I'm querying other "normal" Jira data just fine on the /rest/ endpoint using Basic Auth.

I would appreciate it, if someone could tell me how I need to authenticate to access the Timesheet data.

2 answers

1 accepted

0 votes
Answer accepted
Susanne Götz _Tempo_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jan 07, 2019

Hi Andreas,

The API you are referring to is for the Server version of Tempo.

For the Cloud API's, please take a look at https://tempo-io.github.io/tempo-api-docs/
To retrieve worklogs within a given Project, you can use:

https://api.tempo.io/2/worklogs/project/{projectKey}

Regards,
Susanne Götz
Tempo team

It didn't occur to me that I have to ask a completely different server. It works now. Thank you.

Like # people like this

For anyone struggling to make the API work :
You actually have to pass the term "Bearer " in the request. I spent two hours passing my email id.

Also you SHOULD'NT encode the API_TOKEN. Code below FYR :

 

def TEMPO_URL = "https://api.tempo.io/core/3/worklogs/issue/CTI-1";
def TEMPO_TOKEN = "yHq0o232323Rr9sdsdsS61n1IufgfggTAEOOAj4";

String basicAuth = "Bearer " + TEMPO_TOKEN;
def connection = new URL(TEMPO_URL).openConnection() as HttpURLConnection;
connection.setRequestProperty( "Authorization", basicAuth );

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events