action confluence_get_columns { label: "Get columns" description: "Returns the columns configured for a filter. The column configuration is used when the filter's results are viewed in *List View* with the *Columns* set to *Filter*.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None, however, column details are only returned for:\n\n * filters owned by the user.\n * filters shared with a group that the user is a member of.\n * filters shared with a private project that the user has *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for.\n * filters shared with a public project.\n * filters shared with the public." provider: confluence method: GET path: "/rest/api/3/filter/{id}/columns" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Details of an issue navigator column item." properties: { label: { type: "string" description: "The issue navigator column label." } value: { type: "string" description: "The issue navigator column value." } } additionalProperties: false } } }