v1
latestOpenAPI 3.1.02026-08-066378446.6 KBAccount
Create metadata
<small>Requires an API token with the Metadata Manager role.</small>
Creates a new account-level metadata field definition.
Note that the name and value_type sent in this request are fixed at the time of creation and cannot be changed later.
post/metadata
Request body
Example request
{
"display_name": "Discount Rate",
"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."
}
}