Trust Registry
Update a relying party
Update a relying party's name, origin, client_id, status (active / disabled), or trust_policy (tenant / custom). Send only the fields you want to change.
patch/v1/relying-parties/{uuid}
Path parameters
uuidstring uuid required
UUID of the relying party registration to update.
Request body
Example request
{
"name": "Campus Door",
"origin": "https://door.acme.example",
"client_id": "campus-door",
"status": "disabled",
"trust_policy": "custom"
}Response
The relying party was updated.
Example response
{
"id": "44b2d61a-1634-486b-a35a-df26eb653a1a",
"name": "Campus Door",
"origin": "https://door.acme.example",
"client_id": "campus-door",
"status": "active",
"trust_policy": "tenant",
"created_at": "2026-07-02T23:51:58.746686+00:00"
}