box_metadata_get_instance_on_file_tool
Retrieve metadata instance from a specified file and template in Box. Requires file ID and template key for precise data extraction.
Instructions
Get a metadata instance on a file.
Args: ctx (Context): The context object containing the request and lifespan context. file_id (str): The ID of the file to get the metadata from. template_key (str): The key of the metadata template.
Returns: dict: The metadata instance associated with the file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_id | Yes | ||
template_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_id": {
"title": "File Id",
"type": "string"
},
"template_key": {
"title": "Template Key",
"type": "string"
}
},
"required": [
"file_id",
"template_key"
],
"title": "box_metadata_get_instance_on_file_toolArguments",
"type": "object"
}