Skip to main content

List all Agentic Platform configurations in NetApp Console local deployment

GET /configs

Retrieves a list of all Agentic Platform configurations.

Parameters

Name Type In Required Description

count

boolean

query

False

Indicates if the total number of resources should be returned.

x-organization-id

string

header

False

Organization identifier for multi-tenant isolation. When provided, configurations are scoped to this organization. When x-organization-id is set, the AgentGateway HTTPRoute includes a header match on this value. Requests without the matching header bypass this configuration. The list endpoint filters by organization.

filter

string

query

False

Specifies which fields should be matched in order to return a resource when listing configurations.

Supported operators:

  • eq - Equality

  • ne - Not equal

  • in - Membership in a list

Expressions can be chained with and or or to build complex filters. Parentheses can be used for grouping and precedence control.

Filterable fields: provider, state, id

URL example: "filter=provider%20eq%20%27openai%27%20and%20state%20eq%20%27SUCCESSFUL%27"

URL example: "filter=state%20ne%20%27DRAFT%27"

URL example: "filter=provider%20in%20%28%27openai%27%2C%27anthropic%27%29"

OpenAPI examples: "provider eq 'openai' and state eq 'SUCCESSFUL'", "state ne 'DRAFT'"

Response

Status: 200, Returns a list of configurations in the JSON response body.
Name Type Required Description

count

integer

False

Total number of configuration items in the list

items

array[config_1.0_get_response_body]

True

Array of configuration objects

type

string

True

Media type of the resource. Defined values are:

  • "application/vnd.netapp.bxp.configs"

version

string

True

Version of the list format. Defined values are:

  • "1.0"

Example response
{
  "count": 2,
  "items": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "llmHealthState": "true",
      "models": [
        "gpt-4o",
        "gpt-4o-mini"
      ],
      "provider": "openai",
      "proxyConfigured": "true",
      "state": "SUCCESSFUL",
      "type": "application/vnd.netapp.bxp.config",
      "version": "1.0"
    },
    {
      "id": "550e8400-e29b-41d4-a716-446655440001",
      "models": [
        "claude-3-5-sonnet-20241022"
      ],
      "provider": "anthropic",
      "proxyConfigured": "false",
      "state": "DRAFT",
      "type": "application/vnd.netapp.bxp.config",
      "version": "1.0"
    }
  ],
  "type": "application/vnd.netapp.bxp.configs",
  "version": "1.0"
}

Error

Status: 401, Unauthorized
Name Type Required Description

correlationId

string

False

Internal UUID representing the request or trace ID related.

detail

string

False

Details about the problem.

invalidParams

array[invalidParams]

False

List of invalid parameters.

status

string

True

HTTP error code related to the problem.

title

string

True

Title description of the problem.

type

string

True

Content-type of the object.

Example error response
{
  "detail": "The request is missing the required bearer token.",
  "status": "401",
  "title": "Missing bearer token",
  "type": "https://bluexp.netapp.io/problems/1"
}

Error

Status: 403, Forbidden
Name Type Required Description

correlationId

string

False

Internal UUID representing the request or trace ID related.

detail

string

False

Details about the problem.

invalidParams

array[invalidParams]

False

List of invalid parameters.

status

string

True

HTTP error code related to the problem.

title

string

True

Title description of the problem.

type

string

True

Content-type of the object.

Example error response
{
  "detail": "The requested operation isn't permitted.",
  "status": "403",
  "title": "Operation not permitted",
  "type": "https://bluexp.netapp.io/problems/11"
}

Definitions

See Definitions

extraHeaders

Additional HTTP headers to send with requests

Hash mapping strings to string

extraParams

Provider-specific additional parameters

Hash mapping strings to string

type_bxp_label

Name/value pair.

Name Type Required Description

name

string

True

Name of the label.

value

string

True

Value of the label.

type_bxp_metadata

Metadata associated with the resource.

Name Type Required Description

createdBy

string

False

UUID of the user who created the resource.

creationTimestamp

string

False

Resource creation date.

labels

array[type_bxp_label]

False

Array of name/value pairs representing additional information for the resource.

modificationTimestamp

string

False

Resource modification date.

modifiedBy

string

False

UUID of the user who modified the resource.

rawConfig

Raw AgentGateway YAML configuration as JSON. Currently stores only the user identifier extracted from extraParams. Does not contain the full AgentGateway backend configuration.

config_1.0_get_response_body

Name Type Required Description

apiKey

string

False

The stored provider API key, currently stored in plaintext in MongoDB.

adminAddr

string

False

Admin address for the AgentGateway

baseUrl

string

False

Base URL for the provider API. The response baseUrl mirrors the baseUrl from the provider credential object used during creation.

extraHeaders

extraHeaders

False

Additional HTTP headers to send with requests

extraParams

extraParams

False

Provider-specific additional parameters

id

string

True

Unique identifier for the configuration.

llmHealthState

string

False

Health state of the LLM provider connection. Defined values are:

  • "true" - LLM provider connection is healthy and working

  • "false" - LLM provider connection is unhealthy or failed

metadata

type_bxp_metadata

False

Metadata associated with the resource.

models

array[string]

True

List of configured models. Multiple models enable load balancing.

organizationId

string

False

Organization identifier associated with this configuration. Set from the x-organization-id request header during creation.

port

integer

False

Gateway port

provider

string

True

LLM provider name. Defined values are:

  • "openai" - OpenAI API

  • "anthropic" - Anthropic Claude API

  • "commonOpenAI" - Generic OpenAI-compatible API (custom/self-hosted LLM proxies)

proxyConfigured

string

False

Indicates whether a proxy is configured for this LLM backend. This field reflects whether a cluster-level proxy is active. It is set automatically and should not be set by callers. Defined values are:

  • "true" - A proxy is configured and active for outbound LLM traffic

  • "false" - No proxy is configured; LLM traffic is routed directly

rawConfig

rawConfig

False

Raw AgentGateway YAML configuration as JSON. Currently stores only the user identifier extracted from extraParams. Does not contain the full AgentGateway backend configuration.

sslVerify

boolean

False

Indicates whether to verify SSL certificates.

state

string

True

Current state of the configuration lifecycle. Defined values are:

  • "DRAFT" - Configuration is in draft mode, not yet applied

  • "TESTING" - Configuration is being tested and validated

  • "SUCCESSFUL" - Configuration has been successfully applied and verified

  • "UNSUCCESSFUL" - Configuration application or validation failed

type

string

True

Media type of the resource. Defined values are:

  • "application/vnd.netapp.bxp.config"

version

string

True

Version of the configuration format. Defined values are:

  • "1.0"

invalidParams

Name Type Required Description

name

string

True

Name of the invalid parameter.

reason

string

True

Reason why the parameter is invalid.