Skip to main content
Version: v1.1.1

Get integrations

Get integrations

GET 

undefined/functions/v1/integrations

Get integrations

Request

Query Parameters

    search string

    The search term to filter the templates

    page string

    The number of the page to get the templates

    pageSize string

    The number of templates per page

Header Parameters

    X-Organization-Id string

    The ID of the organization (this parameter is not required when using API key authorization)

    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: Gets integrations success
    localizationstring
    Default value: someone-method:success
    Example: get-integrations:success
    pagination object
    pagesnumber
    Default value: 2
    pagenumber
    Default value: 1
    sizenumber
    Default value: 25
    totalnumber
    Default value: 50
    data object[]
  • Array [
  • namestring
    Default value: integration name
    Example: my workspace
    providerNamestring
    Example: provider name
    workspaceTypeenum

    Possible values: [organization, personal]

    Example: organization
    iduuid
    Example: 595fcf9b-c57a-4ad0-81a5-556fbd6b1240
    projectIduuid
    Example: 595fcf9b-c57a-4ad0-81a5-556fbd6b1240
    providerData object
    urlstring
    Example: https://example-url.com/provider
    logostring
    Example: https://example-url.com/images/logo.png
    namestring
    Example: myuser
    nodeIdstring
    Example: abcdefghijklmnopqrstuvwxyz
    reposUrlstring
    Example: https://example-url.com/provider/abcxyz/repos
    descriptionstring
    Example: my description
    createdAtstring
    Example: 2025-01-01T00:00:00.000Z
    expiredAtstring
    Example: 2025-01-01T00:00:00.000Z
    workspacestring
    Example: my workspace
  • ]

Authorization: x-api-key

name: x-api-keytype: apiKeyin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "undefined/functions/v1/integrations");
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
— query
— query
— query
— header
— header
— header
ResponseClear

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