Flux APIs Management
Flux APIs enable public access to content through the Flux API. Create APIs to expose collections as public endpoints with configurable access methods. Each API generates a unique prefix and manages collection connections with granular method control.
Path Parameters
- Name
:env- Type
- string
- Description
Unique identifier of the environment
- Name
:api- Type
- string
- Description
Unique identifier of the API (the
keyfield)
- Name
:collection- Type
- string
- Description
Unique identifier of the collection (the
keyfield)
Flux API Object
- Name
key- Type
- string
- Description
Unique identifier for the API, automatically generated by the system.
- Name
name- Type
- string
- Description
Display name of the API.
- Name
description- Type
- string
- Description
Optional description of the API's purpose and functionality.
- Name
environment- Type
- string
- Description
Key of the environment this API belongs to.
- Name
prefix- Type
- string
- Description
URL prefix for the API endpoints. Must be unique within the environment.
- Name
version- Type
- string
- Description
API version. Currently only "1" is supported.
- Name
is_auth_required- Type
- boolean
- Description
When
true, Flux API requests for this prefix require API key authentication.
- Name
mcp_enabled- Type
- boolean
- Description
When
true(default), the MCP Server endpoint (/{api_prefix}/_mcp) is exposed for this API prefix. Set tofalseto hide it from agents and clients.
- Name
router_introspection_enabled- Type
- boolean
- Description
When
true(default), the Router Introspection endpoint (/{api_prefix}/_router) is exposed for this API prefix. Set tofalseto hide it from agents and clients.
- Name
cors_origins- Type
- array<string>
- Description
Browser origins allowed to call this API cross-origin (CORS). Default
[]— no CORS headers are emitted and browsers block cross-origin calls. Set explicit origins (https://app.example.com) or["*"]alone. Origins are normalized (lowercase, default ports dropped); up to 100 entries. Applies to public read traffic — the browser header set does not includeAuthorization, and preflight requests are never billed.
- Name
created_at- Type
- datetime
- Description
Timestamp when the API was created.
Setting is_auth_required to true forces Flux API requests under this prefix to include valid Flux API credentials. Leave it false for public read-only endpoints.
mcp_enabled and router_introspection_enabled default to true and control whether the agent-facing MCP Server (/{api_prefix}/_mcp) and Router Introspection (/{api_prefix}/_router) endpoints are reachable for this API prefix. Disable them when you want the API to serve content but not advertise its tool catalog or route contract to agent integrations.
cors_origins opts a public API into being callable straight from browser JavaScript — a static page can fetch reads and search with no server of its own. For a public API, ["*"] adds no new exposure: anonymous reads are already open server-side; CORS only lets browsers read the same responses. Error responses (402, 429) carry the CORS headers too, so client code sees the machine-readable body instead of an opaque network error. The /{api_prefix}/_mcp endpoint is not covered by CORS — MCP clients are not browsers. Changes propagate to the delivery layer within seconds.
Collection Connection Object
Represents the connection between a collection and a Flux API. This object defines which collections are accessible through the API and what operations are allowed on each collection.
- Name
folder- Type
- string
- Description
Key of the connected collection.
- Name
api- Type
- string
- Description
Key of the API this collection is connected to.
- Name
allowed_methods- Type
- array
- Description
Array of allowed access methods that determine what operations can be performed on this collection through the Flux API.
Available methods:
"get_many"- Enables Search API and List Resources API endpoints for this collection. Allows retrieving multiple resources with filtering, searching, and pagination."get_one"- Enables Get Resource API endpoint for this collection. Allows retrieving individual resources by their unique key."create"- Enables Create Resource API for this collection. Allows creating new resources through the Flux API."update"- Enables Update Resource API for this collection. Allows replacing existing resources through the Flux API.
Permission Logic:
- Both read permissions (
["get_many", "get_one"]) - Full read access to collection data through all Flux API endpoints with complete resource content - Only
get_many(["get_many"]) - Can list and search resources, but returns only resource identifiers (keys) without actual content data. Cannot retrieve individual resources by key. - Only
get_one(["get_one"]) - Can retrieve individual resources by key with full content, but cannot list or search multiple resources - No permissions (
[]) - Collection is connected but inaccessible through Flux API (useful for URL structure without data access)
Important:
- The
get_manypermission is required for both Search API and List Resources API functionality - When only
get_manyis enabled withoutget_one, API responses contain only resource keys in the_sys.keyfield, not the actual content data createandupdateare off by default — the field defaults to[], so an unlisted method is simply not enabled. See MCP Server for why an agent-facing API would enable them.
- Name
description_get_one- Type
- string
- Default
- default:"Returns one resource by id."
- Description
Optional short description (max 100 chars) for the Flux
get_oneendpoint of this collection.
- Name
description_get_many- Type
- string
- Default
- default:"Returns a paginated list of resources."
- Description
Optional short description (max 100 chars) for the Flux
get_manyendpoint of this collection.
- Name
description_search- Type
- string
- Default
- default:"Searches resources by filters."
- Description
Optional short description (max 100 chars) for the Flux
_searchendpoint of this collection.
- Name
description_schema- Type
- string
- Default
- default:"Returns JSON schema for this resource."
- Description
Optional short description (max 100 chars) for the Flux
/_schemaendpoint of this collection.
- Name
mcp_truncate_text- Type
- integer|null
- Default
- default:1000
- Description
Caps
textfields at this many characters in results from the MCP list tools (search_records,query_records) for this connection.nulldisables truncation. See MCP Server — Truncated text.On by default, because an MCP caller is an agent rather than a person: every record a tool returns is resent to the model on every subsequent turn, so a long field it did not need is paid for repeatedly. A shortened field is always flagged, and the full document stays one
get_recordaway.MCP only. REST responses are unaffected — List Resources and Search truncate only when the caller passes
truncate_textexplicitly, and this setting does not change that. Truncation also does not engage on a connection withoutget_one, since those list responses carry nodatato shorten andget_recordwould be denied.
- Name
unscoped_levels- Type
- array
- Default
- default:[]
- Description
Which cross-parent read addresses are published for this strict-reference collection, as an array of level numbers (
0= fully-flat/unscoped,1+= partially-flat). Read-only, opt-in, additive to the scoped route. Must be sent together withunscoped_ancestors: a level set with an empty ancestor chain is rejected. Setting it on a public API exposes anonymous cross-parent reads — see the warning. Enabling from the dashboard is easier; it echoes the chain for you.
- Name
unscoped_ancestors- Type
- array
- Default
- default:[]
- Description
The collection's live key-bearing ancestor chain that
unscoped_levelsis published against, root first. Echo the chain reported inflat_routesfor this connection rather than composing it by hand. Cleared to[]when no level is published.
- Name
flat_routes- Type
- array
- Description
Read-only. Describes every publishable cross-parent address for this collection: its rendered
path, its level, whether it is currentlyenabled, and — when unavailable — why. Absent for a collection with no key-bearing ancestor (nothing to flatten). Use it to discover the exact addresses and to read the ancestor chain to echo back inunscoped_ancestors.
- Name
created_at- Type
- datetime
- Description
Timestamp when the collection was connected to the API.
Create API
Creates a new API in the specified environment.
Success Response: 201 Created
Attributes
- Name
name- Type
- string
- Required
- required
- Description
API display name
- Minimum length: 1
- Maximum length: 255
- Name
prefix- Type
- string
- Required
- required
- Description
API URL prefix
- Minimum length: 1
- Maximum length: 100
- Only lowercase letters, digits, hyphens, and underscores
- Must be unique within the environment
- Name
description- Type
- string
- Description
API description
- Maximum length: 500
- Name
version- Type
- string
- Default
- default:1
- Description
API version (currently only "1" is supported)
- Name
is_auth_required- Type
- boolean
- Default
- default:false
- Description
Set to
trueto require Flux API key authentication for this prefix.
- Name
mcp_enabled- Type
- boolean
- Default
- default:true
- Description
Whether the MCP Server endpoint (
/{api_prefix}/_mcp) is exposed for this API prefix. Must be a JSON boolean — strings like"true", integers, andnullare rejected.
- Name
router_introspection_enabled- Type
- boolean
- Default
- default:true
- Description
Whether the Router Introspection endpoint (
/{api_prefix}/_router) is exposed for this API prefix. Must be a JSON boolean — strings like"true", integers, andnullare rejected.
- Name
cors_origins- Type
- array<string>
- Default
- default:[]
- Description
Browser origins allowed cross-origin access (CORS). Explicit origins (
https://app.example.com) or["*"]alone; invalid origins (paths, query strings, userinfo, unknown schemes) are rejected with422. Maximum 100 entries.
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to create APIs.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
environment_not_found- the specified environment does not exist
- Name
422 Unprocessable Content- Description
Validation or business logic error. Specific codes:
validation_error- validation errors in request dataapi_prefix_exists- API with the same prefix already existstoo_many_apis- maximum number of APIs for the environment reached
Request
curl https://api.foxnose.net/v1/7c9h4pwu/api/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..." \
-H "Content-Type: application/json" \
-d '{
"name": "Blog API",
"prefix": "blog-v1",
"description": "API for accessing blog content"
}'
Response
{
"key": "dw2qC5qRwxuZ",
"name": "Blog API",
"description": "API for accessing blog content",
"environment": "7c9h4pwu",
"prefix": "blog-v1",
"version": "1",
"is_auth_required": false,
"mcp_enabled": true,
"router_introspection_enabled": true,
"created_at": "2024-01-15T10:30:00Z"
}
List All Flux APIs
Retrieves all APIs in the specified environment. Results use standard limit/offset pagination.
Success Response: 200 OK
Query Parameters
- Name
limit- Type
- integer
- Default
- default:100
- Description
Number of APIs per page.
- Name
offset- Type
- integer
- Default
- default:0
- Description
Number of APIs to skip before starting the page.
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to view APIs.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
environment_not_found- the specified environment does not exist
Request
curl https://api.foxnose.net/v1/7c9h4pwu/api/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..."
Response
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"key": "dw2qC5qRwxuZ",
"name": "Blog API",
"description": "API for accessing blog content",
"environment": "7c9h4pwu",
"prefix": "blog-v1",
"version": "1",
"is_auth_required": false,
"mcp_enabled": true,
"router_introspection_enabled": true,
"created_at": "2024-01-15T10:30:00Z"
}
]
}
Retrieve Flux API
Retrieves details of a specific API.
Success Response: 200 OK
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to view this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existenvironment_not_found- the specified environment does not exist
Request
curl https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..."
Response
{
"key": "dw2qC5qRwxuZ",
"name": "Blog API",
"description": "API for accessing blog content",
"environment": "7c9h4pwu",
"prefix": "blog-v1",
"version": "1",
"is_auth_required": false,
"mcp_enabled": true,
"router_introspection_enabled": true,
"created_at": "2024-01-15T10:30:00Z"
}
Update Flux API
Updates an existing API.
Success Response: 200 OK
Attributes
- Name
name- Type
- string
- Required
- required
- Description
API display name
- Minimum length: 1
- Maximum length: 255
- Name
prefix- Type
- string
- Required
- required
- Description
API URL prefix
- Minimum length: 1
- Maximum length: 100
- Only lowercase letters, digits, hyphens, and underscores
- Must be unique within the environment
- Name
description- Type
- string
- Description
API description
- Maximum length: 500
- Name
version- Type
- string
- Default
- default:1
- Description
Keep as
"1"(current supported version).
- Name
is_auth_required- Type
- boolean
- Default
- default:false
- Description
Whether Flux API key authentication is enforced for this prefix.
- Name
mcp_enabled- Type
- boolean
- Default
- default:true
- Description
Whether the MCP Server endpoint (
/{api_prefix}/_mcp) is exposed for this API prefix. Must be a JSON boolean — strings, integers, andnullare rejected. Supported onPATCHfor single-field updates ({ "mcp_enabled": false }).
- Name
router_introspection_enabled- Type
- boolean
- Default
- default:true
- Description
Whether the Router Introspection endpoint (
/{api_prefix}/_router) is exposed for this API prefix. Must be a JSON boolean — strings, integers, andnullare rejected. Supported onPATCHfor single-field updates ({ "router_introspection_enabled": false }).
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to update this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existenvironment_not_found- the specified environment does not exist
- Name
422 Unprocessable Content- Description
Validation or business logic error. Specific codes:
validation_error- validation errors in request dataapi_prefix_exists- API with the same prefix already exists
Request
curl -X PUT https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..." \
-H "Content-Type: application/json" \
-d '{
"name": "Updated Blog API",
"prefix": "blog-v1",
"description": "Updated API for accessing blog content",
"version": "1",
"is_auth_required": true
}'
Response
{
"key": "dw2qC5qRwxuZ",
"name": "Updated Blog API",
"description": "Updated API for accessing blog content",
"environment": "7c9h4pwu",
"prefix": "blog-v1",
"version": "1",
"is_auth_required": true,
"mcp_enabled": true,
"router_introspection_enabled": true,
"created_at": "2024-01-15T10:30:00Z"
}
Delete Flux API
Deletes an API and automatically disconnects all associated collections.
Success Response: 204 No Content
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to delete this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existenvironment_not_found- the specified environment does not exist
Request
curl -X DELETE https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..."
Response
No response body
Connect Collection to API
Connects a collection to an API for public access.
Success Response: 201 Created
Attributes
- Name
folder- Type
- string
- Required
- required
- Description
Key of the collection to connect to the API
- Name
allowed_methods- Type
- array
- Default
- default:[]
- Description
Array of allowed access methods that control which Flux API endpoints are available for this collection.
Available methods:
"get_many"- Enables listing and searching resources. Required for Search API and List Resources API"get_one"- Enables retrieving individual resources by key. Required for Get Resource API"create"- Enables creating resources. Required for Create Resource API"update"- Enables replacing resources. Required for Update Resource API
Permission combinations:
["get_many", "get_one"]- Full read access to all Flux API endpoints with complete resource content["get_many"]- Can list/search resources but returns only identifiers (keys) without content data. Cannot retrieve individual resources.["get_one"]- Can retrieve individual resources with full content but cannot list/search[]- No data access (collection appears in URL structure only)
Note: When only
get_manyis enabled, the API returns minimal resource information (only_sys.keyand other system fields) to protect data while allowing resource discovery.createandupdateare off by default — the field defaults to[], so an unlisted method is simply not enabled. See MCP Server for why an agent-facing API would enable them.
- Name
description_get_one- Type
- string
- Default
- default:"Returns one resource by id."
- Description
Optional short description (max 100 chars) for
get_one.
- Name
description_get_many- Type
- string
- Default
- default:"Returns a paginated list of resources."
- Description
Optional short description (max 100 chars) for
get_many.
- Name
description_search- Type
- string
- Default
- default:"Searches resources by filters."
- Description
Optional short description (max 100 chars) for
_search.
- Name
description_schema- Type
- string
- Default
- default:"Returns JSON schema for this resource."
- Description
Optional short description (max 100 chars) for
/_schema.
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to modify this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existcollection_not_found- the specified collection does not existenvironment_not_found- the specified environment does not exist
- Name
422 Unprocessable Content- Description
Validation or business logic error. Specific codes:
validation_error- validation errors in request datacollection_already_connected_to_api- collection is already connected to this API
Request
curl https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/collections/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..." \
-H "Content-Type: application/json" \
-d '{
"folder": "mK8nP3tYvBcX",
"allowed_methods": ["get_one", "get_many"],
"description_get_one": "Get one blog article by key",
"description_get_many": "List blog articles",
"description_search": "Search blog articles by filters",
"description_schema": "Read article JSON schema"
}'
Response
{
"folder": "mK8nP3tYvBcX",
"api": "dw2qC5qRwxuZ",
"allowed_methods": ["get_one", "get_many"],
"description_get_one": "Get one blog article by key",
"description_get_many": "List blog articles",
"description_search": "Search blog articles by filters",
"description_schema": "Read article JSON schema",
"created_at": "2024-01-15T10:30:00Z"
}
List Connected Collections
Retrieves all collections connected to the specified API. Results use standard limit/offset pagination.
Success Response: 200 OK
Query Parameters
- Name
limit- Type
- integer
- Default
- default:100
- Description
Number of connections per page.
- Name
offset- Type
- integer
- Default
- default:0
- Description
Number of connections to skip before starting the page.
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to view this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existenvironment_not_found- the specified environment does not exist
Request
curl https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/collections/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..."
Response
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"folder": "mK8nP3tYvBcX",
"api": "dw2qC5qRwxuZ",
"allowed_methods": ["get_one", "get_many"],
"description_get_one": "Get one blog article by key",
"description_get_many": "List blog articles",
"description_search": "Search blog articles by filters",
"description_schema": "Read article JSON schema",
"created_at": "2024-01-15T10:30:00Z"
}
]
}
Retrieve Connected Collection
Retrieves details of a specific collection connection to an API.
Success Response: 200 OK
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to view this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existcollection_not_found- the specified collection does not exist or is not connected to this APIenvironment_not_found- the specified environment does not exist
Request
curl https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/collections/mK8nP3tYvBcX/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..."
Response
{
"folder": "mK8nP3tYvBcX",
"api": "dw2qC5qRwxuZ",
"allowed_methods": ["get_one", "get_many"],
"description_get_one": "Get one blog article by key",
"description_get_many": "List blog articles",
"description_search": "Search blog articles by filters",
"description_schema": "Read article JSON schema",
"created_at": "2024-01-15T10:30:00Z"
}
Update Connected Collection
Updates the connection settings for a collection in an API.
Success Response: 200 OK
Attributes
- Name
allowed_methods- Type
- array
- Default
- default:[]
- Description
Array of allowed access methods that control which Flux API endpoints are available for this collection.
Available methods:
"get_many"- Enables listing and searching resources. Required for Search API and List Resources API"get_one"- Enables retrieving individual resources by key. Required for Get Resource API"create"- Enables creating resources. Required for Create Resource API"update"- Enables replacing resources. Required for Update Resource API
Permission combinations:
["get_many", "get_one"]- Full read access to all Flux API endpoints with complete resource content["get_many"]- Can list/search resources but returns only identifiers (keys) without content data. Cannot retrieve individual resources.["get_one"]- Can retrieve individual resources with full content but cannot list/search[]- No data access (collection appears in URL structure only)
Note: When only
get_manyis enabled, the API returns minimal resource information (only_sys.keyand other system fields) to protect data while allowing resource discovery.createandupdateare off by default — the field defaults to[], so an unlisted method is simply not enabled. See MCP Server for why an agent-facing API would enable them.
- Name
description_get_one- Type
- string
- Default
- default:"Returns one resource by id."
- Description
Optional short description (max 100 chars) for
get_one.
- Name
description_get_many- Type
- string
- Default
- default:"Returns a paginated list of resources."
- Description
Optional short description (max 100 chars) for
get_many.
- Name
description_search- Type
- string
- Default
- default:"Searches resources by filters."
- Description
Optional short description (max 100 chars) for
_search.
- Name
description_schema- Type
- string
- Default
- default:"Returns JSON schema for this resource."
- Description
Optional short description (max 100 chars) for
/_schema.
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to modify this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existcollection_not_found- the specified collection does not exist or is not connected to this APIenvironment_not_found- the specified environment does not exist
- Name
422 Unprocessable Content- Description
Validation or business logic error. Specific codes:
validation_error- validation errors in request data
Request
curl -X PUT https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/collections/mK8nP3tYvBcX/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..." \
-H "Content-Type: application/json" \
-d '{
"allowed_methods": ["get_many"],
"description_get_one": "",
"description_get_many": "Public article feed",
"description_search": "Search published articles",
"description_schema": "Read feed schema"
}'
Response
{
"folder": "mK8nP3tYvBcX",
"api": "dw2qC5qRwxuZ",
"allowed_methods": ["get_many"],
"description_get_one": "",
"description_get_many": "Public article feed",
"description_search": "Search published articles",
"description_schema": "Read feed schema",
"created_at": "2024-01-15T10:30:00Z"
}
Disconnect Collection
Disconnects a collection from an API.
Disconnecting a collection does not delete the collection or its resources—it only removes access to that collection through the current Flux API.
Success Response: 204 No Content
Errors
- Name
401 Unauthorized- Description
Authentication credentials are missing or invalid.
authentication_failed- authentication credentials were not provided or are invalid
- Name
403 Forbidden- Description
Insufficient permissions to modify this API.
permission_denied- insufficient permissions to perform this action
- Name
404 Not Found- Description
The specified resource could not be found. Specific codes:
api_not_found- the specified API does not existcollection_not_found- the specified collection does not exist or is not connected to this APIenvironment_not_found- the specified environment does not exist
- Name
422 Unprocessable Content- Description
Business logic error. Specific codes:
strict_reference_error- cannot disconnect collection due to dependency constraints
Request
curl -X DELETE https://api.foxnose.net/v1/7c9h4pwu/api/dw2qC5qRwxuZ/collections/mK8nP3tYvBcX/ \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiI..."
Response
No response body