Skip to main content
GET
/
v1
/
repositories
/
{id}
JavaScript
import Runloop from '@runloop/api-client';

const client = new Runloop({
  bearerToken: 'My Bearer Token',
});

const repositoryConnectionView = await client.repositories.retrieve('id');

console.log(repositoryConnectionView.id);
{
  "id": "<string>",
  "name": "<string>",
  "owner": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Repo Connection ID

Response

200 - application/json

OK

The ID of the Repository.

id
string
required

The ID of the Repository.

name
string
required

The name of the Repository.

owner
string
required

The account owner of the Repository.

I