{ "opencollection": "1.0.0", "info": { "name": "Facilio REST Assets Vendors API", "version": "5.0.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Vendors", "type": "folder" }, "items": [ { "info": { "name": "List vendors", "type": "http" }, "http": { "method": "GET", "url": "https://{region}.facilioapis.com/{app_name}/api/v5/vendors", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number (1-based)" }, { "name": "pageSize", "value": "", "type": "query", "description": "Records per page (max 200)" }, { "name": "select", "value": "", "type": "query", "description": "Comma-separated field names to include in the response" }, { "name": "search", "value": "", "type": "query", "description": "Free-text search on the primary field (subject, name, etc.)" }, { "name": "count", "value": "", "type": "query", "description": "Include total record count in response" } ] }, "docs": "List vendors" }, { "info": { "name": "Create a vendor", "type": "http" }, "http": { "method": "POST", "url": "https://{region}.facilioapis.com/{app_name}/api/v5/vendors", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new vendor. Requires `name`, `primaryContactEmail`, and `primaryContactPhone`." }, { "info": { "name": "Get a vendor", "type": "http" }, "http": { "method": "GET", "url": "https://{region}.facilioapis.com/{app_name}/api/v5/vendors/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Record ID" } ] }, "docs": "Get a vendor" }, { "info": { "name": "Update a vendor", "type": "http" }, "http": { "method": "PATCH", "url": "https://{region}.facilioapis.com/{app_name}/api/v5/vendors/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Record ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a vendor" }, { "info": { "name": "Delete a vendor", "type": "http" }, "http": { "method": "DELETE", "url": "https://{region}.facilioapis.com/{app_name}/api/v5/vendors/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Record ID" } ] }, "docs": "Delete a vendor" }, { "info": { "name": "Get vendor field schema", "type": "http" }, "http": { "method": "GET", "url": "https://{region}.facilioapis.com/{app_name}/api/v5/vendors/metadata", "params": [ { "name": "includeAllowedValues", "value": "", "type": "query", "description": "When `true`, the metadata response adds `allowed_values` ([{label, value}]) on every picklist-capable field — `ENUM`, `SYSTEM_ENUM`, `MULTI_ENUM`, `STRING_SYSTEM_ENUM`, and `LOOKUP` fields targeting system picklist modules (status, priority, category, type, ...).\nDefault `false` keeps the original metadata payload (no enrichment, no extra DB calls).\nUse this to discover acceptable write values without round-tripping `GET /picklist/{moduleName}/{fieldName}` for every picklist field.\n" } ] }, "docs": "Returns the field schema for the vendors module, including all declared system fields and any org-specific custom fields with their data type, required/readOnly flags, and lookup targets." } ] } ], "bundled": true }