/integrations/ecosystems/{ecosystemId}/provider-configsintegrationsList an ecosystem's provider configs (secrets masked)
Every stored provider config for the ecosystem, secrets masked to `hasSecret`. The ecosystemId must be the caller's own ecosystem (403 otherwise).
Auth: bearerAuth — calls run as the authenticated user.
- ecosystemIdpathstring
Masked provider configs
- configsIntegrationProviderConfig[]
{
"configs": [
{
"id": "string",
"ecosystemId": "string",
"providerId": "string",
"config": {},
"hasSecret": true,
"updatedBy": "string",
"createdAt": "string",
"updatedAt": "string"
}
]
}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)
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}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)
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}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)
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}curl -X GET "https://api.agenticdeveloperhub.com/integrations/ecosystems/{ecosystemId}/provider-configs" \
-H "Authorization: Bearer YOUR_TOKEN"const res = await fetch("https://api.agenticdeveloperhub.com/integrations/ecosystems/{ecosystemId}/provider-configs", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();