Int 1 adding column to issues table

Steps to add a column to the issues table :

  1. First you need to map the column you need in Postman, for example to get the status name column:

jira-api-issue-fields.png

  1. In the attributes of the download_issues function it is mapped as fields.status.name. If we say fields.status we would get all the columns from status field (self, description, iconUrl...)

download-issues-py-code.png

  1. In the fields variable of the function we input just the name of the field, e.g. status from the example above

  2. Always drop the table before debugging