Web Hooks API


A little known but powerful feature offered by Codesion is our Web Hooks, also know as Call back API or post-commit hooks. Web hooks allow developers to specify their own URL, which Codesion calls after each commit to your code repository.
Here is an example of a URL you'd tell us to call after each commit.

    http://mydomain.com/cgi-bin/webHookCVSDude.cgi

Following your commit, Codesion passes all relevant information to the URL such as...

author
    Person who performed the commit (John Smith)
date
    2009-10-14 12:00:00
youngest
    revision number (345)
commit
    log message (my dog ate my last commit)
organization
    Organization as specified within Codesion (codesion)
service
    Version control system (cvs | svn)

Read more...