/vcs-connections (GET)
GET
/vcs-connections
const url = 'https://example.com/api/v1/vcs-connections';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/vcs-connectionsResponses
Section titled “ Responses ”Default Response
Media type application/json
Array<object>
object
id
required
string
accountLogin
required
string
createdAt
required
string format: date-time
Example
[ { "provider": "github", "kind": "github_app" }]