purchasing_getDefaultAttachmentsForPO

READ

Get default attachments for p o.

Parameters

supplierIdstringnullrequired
itemIdsstring[]required

Call 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"
  ]
}