The documentation here... https://developer.atlassian.com/platform/forge/events-reference/jira/#issue-worklog-events
... states that the interface for the issue worklog event is
interface Worklog {
id: string;
issueId: string;
author?: User;
updateAuthor?: User;
created: string;
updated: string;
started: string;
timeSpent: string;
timeSpentSeconds: number;
}
interface User {
accountId: string;
}
Where is the work description? How can I get it?
Hello @robert_brower ,
Welcome to the community !
With checks, there should be a parameter as below to have the description within the worklogs interface.
comment
You may create a parallel post at Developer Community as well
Thanks Piyush. Can you please tell me what you mean by, "With checks, there should be a parameter as below to have the description within the worklogs interface."
What is meant by checks? Do I need to configure something in Jira, or in my manifest for the events?
My manifest snippet
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Apologies, checks as of 'my view of going thru the documentation and other details'.
Probably the description (a comment in work log) is missing from the interface. Kindly raise this at Developer Portal.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. I thought this was the developer portal. I meant to say that the data I get from this event does not contain the work description. That is consistent with the docs. But why is the work description omitterd?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Developer Portal is a dedicated, and here you will have developer and other community members as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.