/vcs/github/app/registrations
GET
/vcs/github/app/registrations
const url = 'https://example.com/api/v1/vcs/github/app/registrations';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/github/app/registrationsResponses
Section titled “ Responses ”Default Response
Media type application/json
Array<object>
object
Example generated
[ { "id": "example", "appId": "example", "slug": "example", "name": "example", "htmlUrl": "example", "createdAt": "2026-04-15T12:00:00Z" }]