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.
Hi Community,
following tech stack is used at the moment:
strapi headless cms
nuxt static site generator
I would like to use the strapi webhook to start a new pipeline to generate the nuxt full static site if some new content has been published. I tried to find a solution via bitbucket documentation, but it already fails at the authorization to perform an API call.
Do you have any best practises to get this working?
Many thanks in advance
Martin
Thank you for contacting Atlassian Community, my name is Norbert and I'm a Bitbucket Cloud Support Engineer, it's nice to meet with you! Welcome to the Atlassian Community!
I'd like to inform you the best way to start Pipeline is with an API call, let me give you an example for an API call, that you can use the start Pipelines:
curl -X POST -is -u username:apppassword -H 'Content-Type: application/json' https://api.bitbucket.org/2.0/repositories/workspaceid/repositoryname/pipelines/ \
-d '
{
"target": {
"ref_type": "branch",
"type": "pipeline_ref_target",
"ref_name": "branchname"
}
}'
By doing this API call, you're starting Pipelines on "workspaceid/repositoryname" repository, on the "branchname" branch. You can generate an app password by following the steps in this documentation: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/
Please let me know how it goes.
Best Regards,
Norbert
Atlassian Bitbucket Cloud Support
Hi @Norbert C , thank you very much for your feedback. I've already found out how the authorization works. I'm using the app-password method, too.
With your help I'm now able to start the pipeline :)
Best regards,
Martin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome @Martin Pätzold I'm glad to hear I was able to assist you.
Stay safe and have a great week ahead!
Best Regards,
Norbert
Atlassian Bitbucket Cloud Support
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.