purchasing_getDefaultAttachmentsForPO
READGet default attachments for p o.
Parameters
supplierIdstringnullrequireditemIdsstring[]requiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "purchasing_getDefaultAttachmentsForPO",
"arguments": {
"supplierId": "string",
"itemIds": []
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"supplierId": {
"type": [
"string",
"null"
]
},
"itemIds": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"supplierId",
"itemIds"
]
}