Hi, It's not a plugin, it's already built in. The api documentation is on the jfrog site. You just hit artifactory with curl commands and it does what the URL "command" tells it to do.
http://www.jfrog.com/confluence/display/RTF/Artifactory+REST+API Examples: curl -X GET -uadmin:password --url http://artifactoryurl/artifactory/api/system/ping returns "OK" if the system is up. curl -X GET -uadmin:password --url http://artifactoryurl/artifactory/api/system/storage/size returns the amount of storage used by the system, in Bytes. Other API calls, like for build promotion, are more complex, and involve doing a POST operation with a JSON data structure containing your parameters. I usually grab an example from StackExchange and adjust it to my needs. All this can be automated via scripting or through a system automation/CI tool like Jenkins. Regards, -Dave P. On 9/24/2014 11:11 AM, Vinny wrote: > Hi, > > can you please point me to documentation , where I can setup the Rest API > in artifactory pro. > > Thanks! > > > > -- > View this message in context: > http://forums.jfrog.org/enable-the-REST-API-plugin-tp7579990.html > Sent from the Artifactory - Users mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer > Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports > Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper > Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer > http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk > _______________________________________________ > Artifactory-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/artifactory-users ------------------------------------------------------------------------------ Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk _______________________________________________ Artifactory-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/artifactory-users
