Create issue with issue property using AP.jira.openCreateIssueDialog

Is it somehow possible to create properties alongside issue using AP.jira.openCreateIssueDialog? I need to know whether the issue was created by standard Create button or via our app using AP.jira.openCreateIssueDialog

Unfortunatelly following won’t work:

AP.jira.openCreateIssueDialog( ()=>(), {
                pid: projectId,
                issueType: issueTypeId,
                fields: { ... },
                properties: [{
                    key: 'who.created.me',
                    value: 'our.app',
                }]
            }

Property need to be added exactly at the time Jira creates issue, because I need to filter out such issues form the ‘issue-created’ webhook.