Skip to content
PaloNexus
Request access Request

Register Governed Agent

POST
/v1/governance/agents
curl --request POST \
--url https://example.com/v1/governance/agents \
--header 'Content-Type: application/json' \
--data '{ "agentName": "example", "tenantId": "example", "ownerType": "example", "ownerRef": "example", "teamRef": "example", "businessSponsor": "example", "riskTier": "example", "approvedRuntime": "example", "createdBy": "example" }'
Media type application/json
RegisterGovernedAgentRequest
object
agentName
required
Agentname
string
tenantId
required
Tenantid
string
ownerType
required
Ownertype
string
ownerRef
required
Ownerref
string
teamRef
Any of:
string
businessSponsor
Any of:
string
riskTier
Any of:
string
approvedRuntime
Any of:
string
createdBy
Any of:
string
Example generated
{
"agentName": "example",
"tenantId": "example",
"ownerType": "example",
"ownerRef": "example",
"teamRef": "example",
"businessSponsor": "example",
"riskTier": "example",
"approvedRuntime": "example",
"createdBy": "example"
}

Successful Response

Media type application/json
Example generated
example

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": {}
}
]
}