6

Is it possible to get commits on Bitbucket by datetime filter using their REST API v1.0 ? I read the entire documentation of the Bitbucket API, but I couldn't find anything related. I'm asking perhaps I did miss something. Thank you!

API I am using to get Commits from bitbucket /rest/api/1.0/projects/{0}/repos/{1}/commits

BitBucket API Document

swx
  • 138
  • 12

1 Answers1

-1

Looking at their docs you can apply filtering but it's not very clear.

https://developer.atlassian.com/bitbucket/api/2/reference/meta/filtering

You can apply filtering such as

updated_on <= 2015-03-04
Nathelol
  • 577
  • 7
  • 25