{
  "info": {
    "name": "Flotiq — mcp.ai",
    "description": "REST API for the Flotiq MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/flotiq",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "flotiq_batch_upsert_content_objects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/batch/upsert/content/objects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "batch",
            "upsert",
            "content",
            "objects"
          ]
        },
        "description": "Create or update up to 100 objects of one Flotiq content type in a batch, returning success and error counts plus per-object validation errors. The batch is atomic: if any object fails validation, Flo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"objects\": \"\",\n  \"content_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_create_content_object",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/content/object",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "content",
            "object"
          ]
        },
        "description": "Create one object that conforms to a Flotiq content type definition.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": {},\n  \"content_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_delete_content_object",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/content/object",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "content",
            "object"
          ]
        },
        "description": "Soft-delete one Flotiq content object. Flotiq retains deleted objects for 60 days, but restoration requires Flotiq support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"content_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_get_content_object",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content/object",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content",
            "object"
          ]
        },
        "description": "Get one object by content type and ID, optionally expanding its relationships.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"hydrate\": 0,\n  \"content_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_get_content_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content",
            "type"
          ]
        },
        "description": "Get one content type definition, including its field schema and metadata configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"strict_schema\": false,\n  \"resolve_references\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_list_content_objects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/content/objects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "content",
            "objects"
          ]
        },
        "description": "List and filter objects from one Flotiq content type while preserving its dynamic fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"limit\": 0,\n  \"filters\": {},\n  \"hydrate\": 0,\n  \"order_by\": \"\",\n  \"empty_first\": false,\n  \"next_cursor\": \"\",\n  \"content_type\": \"\",\n  \"order_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_list_content_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/content/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "content",
            "types"
          ]
        },
        "description": "List the content type definitions visible to the connected Flotiq account, including internal types.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"label\": \"\",\n  \"limit\": 0,\n  \"names\": \"\",\n  \"order_by\": \"\",\n  \"next_cursor\": \"\",\n  \"order_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_search_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "content"
          ]
        },
        "description": "Full-text search across content objects visible to the API key, optionally restricted to content types, with configurable matching, ordering, relationship expansion, and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"hydrate\": 0,\n  \"order_by\": \"\",\n  \"query_mode\": \"\",\n  \"next_cursor\": \"\",\n  \"content_types\": \"\",\n  \"order_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_set_content_object_publication",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/content/object/publication",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "content",
            "object",
            "publication"
          ]
        },
        "description": "Publish a Draft & Public content object or return it to draft; this changes what public consumers can see.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"content_type\": \"\",\n  \"target_state\": \"\",\n  \"cascade_relationships\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "flotiq_update_content_object",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/content/object",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "content",
            "object"
          ]
        },
        "description": "Partially update selected fields of one existing Flotiq content object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"changes\": {},\n  \"content_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}