You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I am running into an issue trying to call the Rest API Method using Powershell. I am sure I am calling the URL properly with my access token and other info. Although I am running into an issue.
I have a script that can Grab the users ID and Group Id I want to add them too. The Last step is confusing me.
$gId = $group.groupId
$aId = $user.accountId
$Headers = @{"Authorization"="Basic $($authinfo)"}
$id = @{
accountId = "$aId"
}
$body = $id | ConvertTo-Json
params = @{
Uri = "https://your-domain.atlassian.net/rest/api/3/group/user?groupId=$gId"
Method = 'POST'
Body = $body
ContentType = 'application/json'
}
Invoke-RestMethod @params -Headers $Headers
Output:
Invoke-RestMethod : The remote server returned an error: (400) Bad Request.
Changed URL to default - I replace my site in the script.
Not sure what the issue was. It started working the next day. Might be a limit how many times API is called?
@Anthony Brunocan you provide the part of the script to pull users & their ID's? Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I find the output of the Uri it is this:
https://company.atlassian.net/rest/api/3/group/user?groupId=8d402247-fec1-4f9a-a6f8-299bfe92cb83
{
"accountId": "5f31c34f1ac29c00458906f5"
}
so the Account ID / group Ids should be valid.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.