Skip to main content
Version: v1.0.1

Get integration repositories

Get integration repositories

GET 

undefined/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

Success

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
    repositories object[]
  • Array [
  • iduuid
    Example: 595fcf9b-c57a-4ad0-81a5-556fbd6b1240
    namestring
    Example: myrepo
    fullNamestring
    Example: myuser/myrepo
    urls object
    htmlstring
    Example: https://example-url.com
    sshstring
    Example: https://example-url.com
    clonestring
    Example: https://example-url.com
  • ]

Authorization: x-api-key

name: x-api-keytype: apiKeyin: header
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());
Request Collapse all
Base URL
undefined/functions/v1
Auth
Parameters
— pathrequired
— query
— header
— header
— header
ResponseClear

Click the Send API Request button above and see the response here!