Get integration repositories
Get integration repositories
GETundefined/functions/v1/integrations/:integrationIdentifier/repos
Get integration repositories
Request
Path Parameters
integrationIdentifier stringrequired
The identifier of the integration (Id or Name of the integration)
Query Parameters
fullname string
Possible values: Value must match regular expression ^[a-zA-Z0-9_-]+/[a-zA-Z0-9_-]+$
Header Parameters
X-Organization-Id string
The ID of the organization to create the project
X-Project-Id uuid
The ID of the project to create the integration (Use this if you are not going to use the X-Project-Name)
X-Project-Name string
The Name of the project to create the integration (Use this if you are not going to use the X-Project-Id)
Responses
- 200
Success
- application/json
- Schema
- Example (auto)
Schema
successboolean
Default value:
true
timestampstring
Default value:
2024-01-01T00:00:00.000Z
statusCodenumber
Default value:
200
statusTextstring
Default value:
Success
messagestring
Default value:
Message successfully
Example:
Get repositories success
localizationstring
Default value:
someone-method:success
Example:
get-repositories:success
data object
{
"success": true,
"timestamp": "2024-01-01T00:00:00.000Z",
"statusCode": 200,
"statusText": "Success",
"message": "Get repositories success",
"localization": "get-repositories:success",
"data": {
"repositories": [
{
"id": "595fcf9b-c57a-4ad0-81a5-556fbd6b1240",
"name": "myrepo",
"fullName": "myuser/myrepo",
"urls": {
"html": "https://example-url.com",
"ssh": "https://example-url.com",
"clone": "https://example-url.com"
}
}
]
}
}
Authorization: x-api-key
name: x-api-keytype: apiKeyin: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "undefined/functions/v1/integrations/:integrationIdentifier/repos");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("x-api-key", "<x-api-key>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear