View existing repository details via API
This method allows you to view your repository details.
URL
/project/<project>/repository
Replace <project>
with the permalink
of the project.
HTTP Method
GET
Supported Parameters
None
Example cURL Request
curl -H "Content-type: application/json" \
-H "Accept: application/json" \
--user adam@atechmedia.com:my-api-key \
https://test.deployhq.com/projects/project/repository
Example Response
{
"scm_type": "git",
"url": "git@github.com:danquinney/test.git",
"port": null,
"username": null,
"branch": "master",
"cached": false,
"hosting_service": {
"name": "GitHub",
"url": "http://github.com",
"tree_url": "https://github.com/danquinney/test/tree/master",
"commits_url": "https://github.com/danquinney/test/commits/master"
}
}