Jira create_issue not working

Hi all,

I am trying to use create_issue to create a jira ticket via code from my python console but I am getting the error as “No project could be found with id

jira pip version -> 2.0.0

from jira import JIRA
jac = JIRA('https://company_name.atlassian.net')
jac.create_issue(project='39684', summary='New issue from jira-python',description='Look into this one', issuetype={'name': 'Bug'})

I got the project id 39684 using the following GET API
https://company_name.atlassian.net/rest/api/3/project/project_key

Please suggest where I am doing wrong.