Issue comment REST API content types

Hi everyone! I am using the REST API for retrieving comments from Jira issues. The following endpoint is being used: “https://xyz.atlassian.net/rest/api/3/issue/{issuekey}/comment

I would like to know all the different types of content ‘types’ that are possible in comments. I only want to extract the textual content but not all content types have a ‘text’ field so I would like to filter out all those comments with content types not having ‘text’ fields

You can find here the docs for that endpoint.
As you can see, the body response parameter is an ADF document, you can find its specification (and all the node types) here.

1 Like

Thank you so much for this! I was having trouble finding the documentation of each node type but this has everything I needed