v1
latestOpenAPI 3.1.02026-08-066378446.6 KBAccount
Update metadata
<small>Requires an API token with the Metadata Manager role.</small>
Updates an account-level metadata field definition.
Only account-level metadata fields can be updated; system metadata is read-only.
Note that while a metadata's name and value_type cannot be changed, the display_name may be updated via this request.
Returns a 409 Conflict if a bulk metadata management operation is currently in progress for this metadata field.
put/metadata/{metadata}
Path parameters
metadatastring required
The metadata UUID
Request body
Example request
{
"display_name": "Discount Rate",
"description": "The discount rate applied to the company valuation in a follow-on financing round.",
"prompt": "Extract the discount rate percentage from the document.",
"keywords": "discount, rate, valuation"
}Response
MetadataResource
Example response
{
"data": {
"uuid": "7dae3dad-e56d-45e9-86e5-b69dc30597dc",
"name": "discount_rate",
"display_name": "Discount Rate",
"settings": {
"currencies": [
"EUR",
"USD"
]
},
"description": "The discount rate applied to the company valuation in a follow-on financing round.",
"keywords": "discount, rate, valuation",
"prompt": "Extract the discount rate percentage from the document."
}
}