I setup a bot to perform my continuous integration. But I need to send info about coverage to my database using its own API.
Using following address: http://lb.mycompany.org/api/public/metrics
I need to send a POST with following parameters:
{"project_public_id": "myprojectid", "type": "coverage", "value": "50", "platform": "ios"}
How can I do this? How to access code coverage from within trigger script?