Returns worklog details for a list of issue ID and worklog ID pairs.
This is an internal API for bulk fetching worklogs by their issue and worklog IDs. Worklogs that don't exist will be filtered out from the response.
The returned list of worklogs is limited to 1000 items.
Permissions required: This is an internal service-to-service API that requires ASAP authentication. No user permission checks are performed as this bypasses normal user context.
Forge and OAuth2 apps cannot access this REST resource.
Connect apps cannot access this REST resource.
A JSON object containing a list of issue ID and worklog ID pairs.
array<WorklogCompositeKey>
Returned if the request is successful.
1
2
3
4
5
6
7
8
9
10
11
12
13
curl --request POST \
--url 'https://your-domain.atlassian.net/rest/internal/api/latest/worklog/bulk' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"requests": [
{
"issueId": 13,
"worklogId": 15
}
]
}'1
2
3
4
5
6
7
8
{
"worklogs": [
{
"issueId": 13,
"worklogId": 15
}
]
}Rate this page: