List Endpoints Route
GET
/v1/admin/forge-endpoints
const url = 'http://localhost:8080/v1/admin/forge-endpoints?include_platform_defaults=true';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Responses
Section titled “ Responses ”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>
ValidationErrorobject
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": {} } ]}