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

How to get a latest commit raw resources through Bitbucket API

Carl Zeng March 5, 2015

Background: We have a requirement on integrate Bitbucket with a Cloud base APP(NetSuite), Implementation for Bitbucket to Netsuite FileCabinet Automation

There is a step I can think of is:

  1. After Bitbucket fired post hook
  2. Third party code need to login to Bitbucket account and
  3. Read latest commit resource raw information (Using Bitbucket API), I.e. the whole commit&push .js file

    My question is: does  Bitbucket API support to read the whole raw resources? I.e. a latest .js file pushed

I went through the online help of BITBUCKET, and got no answer? 

Thanks in advance

1 answer

0 votes
GeneTaylor March 9, 2015

Hi Carl,

If I understand your question correctly you want to get the the whole files from a commit and pass them on to third party code. This can be accomplished with the following API calls,

https://confluence.atlassian.com/display/BITBUCKET/changesets+Resource#changesetsResource-GETalistofchangesets

GET https://bitbucket.org/api/1.0/repositories/{accountname}/{repo_slug}/changesets?limit=integer?start=node

This will give you a list of changesets (commits), and the files modified in each commit. You can use the timstamp to work out the latest. Once you have the changeset you are after you are going to want the raw_node for the next call


 https://confluence.atlassian.com/display/BITBUCKET/src+Resources

GET https://bitbucket.org/api/1.0/repositories/{accountname}/{repo_slug}/raw/{revision}/{path}

The revision here is the the raw_node you grabbed from the previous call. This call is what will get you the raw resource, for example the entire .js file

Sarah Dwyer February 12, 2021

These endpoints are now deprecated, what're the alternatives?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events