The weird issue with worklogs which created by Tempo Timesheets plugin

Hi,
I’m trying to use the REST API to get worklogs and find that if a worklog was created by using “Tempo Timesheets” plugin (TT), the response doesn’t have an information about the user who created such worklog.

Here is the example the worklogs:

  1. the worklog which created without using the TT:
    {
    “self”: “…/rest/api/3/issue/14210/worklog/35932”,
    “author”: {
    “self”: “…/rest/api/3/user?accountId=70121%3A4c0a06e0-e152-4b0e-8655-1086e5e775ec”,
    “accountId”: “70121:4c0a06e0-e152-4b0e-8655-1086e5e775ec”,
    “emailAddress”: “test.user@mydashboard.com”,
    “avatarUrls”: {
    },
    “displayName”: “Test User”,
    “active”: true,
    “timeZone”: “Europe/Berlin”,
    “accountType”: “atlassian”
    },
    “updateAuthor”: {
    “self”: “…/rest/api/3/user?accountId=70121%3A4c0a06e0-e152-4b0e-8655-1086e5e775ec”,
    “accountId”: “70121:4c0a06e0-e152-4b0e-8655-1086e5e775ec”,
    “emailAddress”: “test.user@mydashboard.com”,
    “avatarUrls”: {
    },
    “displayName”: “Test User”,
    “active”: true,
    “timeZone”: “Europe/Berlin”,
    “accountType”: “atlassian”
    },
    “comment”: “Verified on stage and prod”,
    “created”: “2022-08-12T13:02:14.424+0300”,
    “updated”: “2022-08-12T13:02:14.424+0300”,
    “started”: “2022-08-12T13:01:00.000+0300”,
    “timeSpent”: “2h 30m”,
    “timeSpentSeconds”: 9000,
    “id”: “35932”,
    “issueId”: “14210”
    }
  2. the worklog which created with the TT:

{
“self”: “…/rest/api/3/issue/14210/worklog/35933”,
“author”: {
“self”: “…/rest/api/3/user?accountId=557058%3A295406f3-a1fc-4733-b906-dd15d021bd79”,
“accountId”: “557058:295406f3-a1fc-4733-b906-dd15d021bd79”,
“avatarUrls”: {},
“displayName”: “Tempo Timesheets”,
“active”: true,
“timeZone”: “Europe/Berlin”,
“accountType”: “app”
},
“updateAuthor”: {
“self”: “…/rest/api/3/user?accountId=557058%3A295406f3-a1fc-4733-b906-dd15d021bd79”,
“accountId”: “557058:295406f3-a1fc-4733-b906-dd15d021bd79”,
“avatarUrls”: {},
“displayName”: “Tempo Timesheets”,
“active”: true,
“timeZone”: “Europe/Berlin”,
“accountType”: “app”
},
“comment”: “time-tracking”,
“created”: “2022-08-12T13:03:10.840+0300”,
“updated”: “2022-08-12T13:03:10.840+0300”,
“started”: “2022-08-12T11:00:00.000+0300”,
“timeSpent”: “1h”,
“timeSpentSeconds”: 3600,
“id”: “35933”,
“issueId”: “14210”
}

Both the reports were created by the same user, but the last one doesn’t have any information about this user.

Is there any way to get any information about the user like “owner account ID”?