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 Csupka , 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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.