Skip to main content
Version: v1.1.0

Retrieve a list of all registries.

Get all registries

GET 

undefined/functions/v1/registries

Retrieve a list of all registries.

Request

Header Parameters

    X-Organization-Id string

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

    X-Project-Id uuidrequired

    The ID of the project.

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: Registries fetched successfully!
    localizationstring
    Default value: someone-method:success
    Example: get-all-registries:success
    data object[]
  • Array [
  • iduuid
    Example: 595fcf9b-c57a-4ad0-81a5-556fbd6b1240
    namestring
    Example: my registry
    projectIduuid
    Example: 595fcf9b-c57a-4ad0-81a5-556fbd6b1240
    organizationIduuid
    Example: 595fcf9b-c57a-4ad0-81a5-556fbd6b1240
    registrystring
    Example: my registry
    registryHoststring
    Example: my-registry-host.com
    registryUsernamestring
    Example: my-registry-username
    tokenSecretIduuid
    Example: 595fcf9b-c57a-4ad0-81a5-556fbd6b1240
    createdAtstring
    Example: 2025-01-01T00:00:00.000Z
    updatedAtstring
    Example: 2025-01-01T00:00:00.000Z
    deletedAtstring
    Example: 2025-01-01T00:00:00.000Z
  • ]

Authorization: x-api-key

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

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