Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,778
Community Members
 
Community Events
185
Community Groups

Can I configure this plugin via the REST endpoint?

I see there's a REST endpoint for this Slack integration. Is there any documentation for configuring it via REST?

We have hundreds of repositories, and configuring them manually is a major undertaking. It would help if we could manage it programatically. A global Slack configuration that applies to all repositories in a project would also be beneficial.

1 answer

2 votes
Luiz Silva
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Feb 28, 2020

Hey @Ben Middleton

There are endpoints that you can use. They are not officially supported but you can rely on them being stable.

You can use command line or any HTTP client tool such as curl or Postman to achieve bulk configuration. Let's try a step-by-step example:

1. Get all repository IDs from a project using Bitbucket Server API

curl -s --user user:pass https://<baseUrl>/rest/api/1.0/projects/<projectSlug>/repos | jq -r '.values[].id'

Note that the project slug is something like "PROJECT_1". You can find this value in the URL when you visit the project or a repository in it.

2. Create the configuration

curl -s -X PUT --user user:pass https://<baseUrl>t/rest/slack/latest/config/<repositoryId>/<slackTeamId>/<slackChannelId>/new?initialLink=true 

Note that the repository ID is an integer number as returned in the previous step. As the Slack team and channel IDs, they usually start with T and C, respectively, and can be found in Slack.

 

Apart from that, if you want to know which endpoints and which values are used in these endpoints, you could just inspect the configuration page requests with the Developer Tools in your browser. ;)

 

Hope that helps. Cheers!

am1234
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 18, 2023

@Luiz Silva do you think those are still working? it seem they didn't get supported till now since I cannot find any documentation on them. 

but I have tested them out and I am not able to get them working.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events