Skip to main content
GET
/
configuration
/
list
Retrieves a list of configuration objects
curl --request GET \
  --url https://api.inorbit.ai/configuration/list \
  --header 'x-auth-inorbit-app-key: <api-key>'
{
  "items": [
    {
      "scope": "<string>",
      "kind": "<string>",
      "id": "<string>",
      "label": "<string>",
      "suppressed": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://inorbitinc.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-auth-inorbit-app-key
string
header
required

InOrbit appKey authenticates API requests using a token.

You can obtain your appKey in the Authentication docs.

Query Parameters

scope
string

Filter configuration objects for the specified scope. * can be used as wildcard for filtering, for example *, account tag/*, robot/* are valid filers.

kind
string
required

Filter configuration objects for the specified kind

id
string

Filter configuration objects for the specified id

format
enum<string>

Format to use, it can be a list with a short description for each object or the full objects in the same format used by the apply operation. By default the "short" format is used.

Available options:
short,
full

Response

Configuration applied successfully. Note that at most 200 elements are returned. If you need more elements, specify a narrower scope or kind filter.

items
object[]
required