Skip to main content
GET
/
v1
/
git
/
repos
List git repositories
curl --request GET \
  --url https://unify.bundleup.io/v1/git/repos \
  --header 'Authorization: Bearer <token>' \
  --header 'BU-Connection-ID: <bu-connection-id>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "full_name": "<string>",
      "description": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "metadata": {
    "next": "<string>"
  },
  "_raw": {}
}

Authorizations

Authorization
string
header
required

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

Headers

Authorization
string
required

API Key for authentication

BU-Connection-ID
string
required

Connection ID for the integration

BU-Include-Raw
enum<string> | null
default:false

Whether to include raw response from the provider

Available options:
true,
false

Query Parameters

limit
number
default:100

Number of channels to return

Required range: 1 <= x <= 100
after
string

Cursor for pagination

Response

Successful Response For repos

data
object[]
required
metadata
object
required
_raw
object

Raw response from the provider