We are working on creating a new web service. It requires the Jira APIs.
What the issue we faced - we do request to the https://api.atlassian.com/admin/v1/orgs/{orgId}/users
and the response is:
{
"data": [
{
"account_id": "6019214d332cbe0070095fd9",
"account_type": "atlassian",
"account_status": "active",
"name": "Ilona Bielym",
"picture": "",
"email": "ilona.bielym@brocoders.team",
"access_billable": true,
"last_active": "2023-01-20T12:11:57.303688Z",
"product_access": [
{
"name": "Jira Software",
"key": "jira-software",
"siteId": "11f1d535-a25e-4ae0-926d-a893a2d4ff7f",
"realm": "global",
"regions": [],
"workspaceAri": "ari:cloud:jira-software::site/11f1d535-a25e-4ae0-926d-a893a2d4ff7f",
"url": "brocoders.atlassian.net",
"last_active": "2023-01-17T09:41:05.166238Z"
},
],
"links": {
"self": "https://api.atlassian.com/users/6019214d332cbe0070095fd9/manage/profile"
}
}
]
}
How can we do the request for the specific user, so the response includes product_access field ?