Overview
GET/integrations/admin/configsintegrations

List provider global configs (admin; secrets masked)

Paged by limit/offset (limit defaults to 50, capped at 100; offset defaults to 0). Returns a pagination envelope: `items` is the page; `total` is the unfiltered provider-config count; `limit`/`offset` echo the applied paging.

Auth: bearerAuth — calls run as the authenticated user.

Parameters
  • limitquery · optionalstring
  • offsetquery · optionalstring
Responses
200

Masked provider configs (paginated)

  • itemsIntegrationGlobalConfig[]
  • totalinteger

    Unfiltered count of provider configs

  • limitinteger
  • offsetinteger
Example
{
  "items": [
    {
      "providerId": "string",
      "config": {},
      "hasSecret": true,
      "updatedBy": "string",
      "updatedAt": "string"
    }
  ],
  "total": 0,
  "limit": 0,
  "offset": 0
}
401

Problem Details (RFC 9457)

  • typeoptionalstring

    URI identifying the problem type; 'about:blank' when unspecified

  • titlestring

    Short, human-readable summary of the problem type

  • statusinteger

    HTTP status code, duplicated in the body

  • detailoptionalstring

    Explanation specific to this occurrence

  • instanceoptionalstring

    URI reference for this occurrence (the request path)

Example
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string"
}
403

Problem Details (RFC 9457)

  • typeoptionalstring

    URI identifying the problem type; 'about:blank' when unspecified

  • titlestring

    Short, human-readable summary of the problem type

  • statusinteger

    HTTP status code, duplicated in the body

  • detailoptionalstring

    Explanation specific to this occurrence

  • instanceoptionalstring

    URI reference for this occurrence (the request path)

Example
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string"
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/integrations/admin/configs" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/integrations/admin/configs", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();