Overview
GET
/access/personas/{id}/user-toolsregistryList a persona's owner-granted tools + the caller's own per-tool allow toggle
Fetch a record from user-tools by id.
Auth: bearerAuth — calls run as the authenticated user.
Parameters
- idpathstring
Responses
200
the persona's granted tools annotated with the caller's toggle
- toolsRegistryPersonaUserTool[]
Example
{
"tools": [
{
"toolName": "string",
"source": "string",
"displayName": "string",
"description": "string",
"readOnly": true,
"allowed": true
}
]
}401
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}404
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/access/personas/{id}/user-tools" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/access/personas/{id}/user-tools", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();