Evaluates the participant placeholder vocabulary against this participant.
The participant-side mirror of pinned `{{sender.*}}` / `{{venue.*}}` tool parameters: every placeholder in the closed vocabulary (scalar profile fields plus `account.<provider>` / `address.<provider>` selectors for the union of the participant's own providers and the tenant's connected channels) evaluated through the same resolver a real tool call uses. Each row carries either the value that would be injected or the verbatim fail-closed error the tool call would die with — so "why did a pinned tool fail for this person" is answered from the Directory instead of a trace dig. Groups evaluate under the `venue.` root; people and AI agents under `sender.`. Returns 404 when the participant does not exist.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The participant identifier.
uuidThe tenant identifier
Response Body
curl -X GET "https://api.fruxon.com/v1/tenants/string/participants/497f6eca-6276-4993-bfeb-53cbbbba6f08/placeholders"{
"subject": "string",
"rows": [
{
"placeholder": "string",
"value": "string",
"error": "string"
}
]
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Partial update
Applies a partial update: only the non-null fields of the request are written, so callers can patch a single property without resending the whole resource. Supplying `Channels` replaces the channel list wholesale. `Kind` cannot be changed here. Agent bindings are managed through the nested `bindings` sub-resource, not this endpoint.
Creates a participant and optionally binds it to a set of agents atomically.
Creates the participant together with its channels and any initial agent bindings supplied in the request — all in one transaction, so a participant is never persisted half-bound. `Kind` is fixed at creation: switching a participant between Person, Group, and AI Agent requires recreating it.