Skip to content

List Endpoints Route

GET
/v1/admin/forge-endpoints
curl --request GET \
--url 'http://localhost:8080/v1/admin/forge-endpoints?include_platform_defaults=true'

List forge endpoints visible to the actor.

Default scope: tenant’s own rows + platform-default rows. platform_admin can pass tenant_id= to scope to a specific tenant, or tenant_id=null (literal string handled below) to list only the platform layer.

tenant_id
Any of:
string
include_platform_defaults
Include Platform Defaults
boolean
default: true

Successful Response

Media type application/json
Response List Endpoints Route V1 Admin Forge Endpoints Get
object
key
additional properties
any
Example generated
{}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}