{
  "info": {
    "name": "Siteleaf — mcp.ai",
    "description": "REST API for the Siteleaf 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/siteleaf",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "siteleaf_cancel_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "job"
          ]
        },
        "description": "Cancel an active Siteleaf job by job ID. This irreversibly requests that the job stop.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_create_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "collection"
          ]
        },
        "description": "Create a content collection in a Siteleaf site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"title\": \"\",\n  \"output\": false,\n  \"site_id\": \"\",\n  \"metadata\": {},\n  \"permalink\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_create_collection_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/collection/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "collection",
            "file"
          ]
        },
        "description": "Upload one static file to a Siteleaf collection identified by its path. This action cannot create collection documents or content files with YAML front matter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"site_id\": \"\",\n  \"collection_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_create_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "document"
          ]
        },
        "description": "Create a document in a Siteleaf collection with content, taxonomy, metadata, and visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"date\": \"\",\n  \"path\": \"\",\n  \"tags\": \"\",\n  \"title\": \"\",\n  \"site_id\": \"\",\n  \"metadata\": {},\n  \"permalink\": \"\",\n  \"categories\": \"\",\n  \"visibility\": \"\",\n  \"collection_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_create_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "page"
          ]
        },
        "description": "Create a page in a Siteleaf site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"date\": \"\",\n  \"path\": \"\",\n  \"title\": \"\",\n  \"site_id\": \"\",\n  \"metadata\": {},\n  \"permalink\": \"\",\n  \"visibility\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_create_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "role"
          ]
        },
        "description": "Grant a Siteleaf user an admin, publisher, or writer role on a site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"kind\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_create_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "site"
          ]
        },
        "description": "Create a Siteleaf site with its domain, timezone, metadata, and defaults.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"empty\": false,\n  \"title\": \"\",\n  \"domain\": \"\",\n  \"defaults\": \"\",\n  \"metadata\": {},\n  \"timezone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_delete_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "collection"
          ]
        },
        "description": "Permanently delete a Siteleaf collection by site ID and collection path. This cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\",\n  \"collection_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_delete_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document"
          ]
        },
        "description": "Permanently delete a Siteleaf document by ID. This cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_delete_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "page"
          ]
        },
        "description": "Permanently delete a Siteleaf page by ID. This cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_delete_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "role"
          ]
        },
        "description": "Delete a Siteleaf role by ID, removing the user's access to its site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_delete_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "site"
          ]
        },
        "description": "Permanently delete a Siteleaf site by ID. This cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_delete_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "source"
          ]
        },
        "description": "Permanently delete one raw source file from a Siteleaf site. Directories and _config.yml are protected and cannot be deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\",\n  \"source_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collection"
          ]
        },
        "description": "Get a collection by site ID and collection path.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\",\n  \"collection_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_current_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "user"
          ]
        },
        "description": "Return the Siteleaf user authenticated by the connected API key.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document"
          ]
        },
        "description": "Get a Siteleaf document by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "job"
          ]
        },
        "description": "Get the complete buffered status stream for a Siteleaf job, including all status events and the latest status details. The call waits until Siteleaf closes the event stream.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page"
          ]
        },
        "description": "Get a Siteleaf page by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "role"
          ]
        },
        "description": "Get a Siteleaf site-access role by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "site"
          ]
        },
        "description": "Get one Siteleaf site by ID, including its settings and current or most recent preview, publish, and synchronization job states.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_site_taxonomy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/site/taxonomy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "site",
            "taxonomy"
          ]
        },
        "description": "Return the unique post tags and categories used by a Siteleaf site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_get_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "source"
          ]
        },
        "description": "Get raw source-file metadata or list a source directory for a Siteleaf site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\",\n  \"source_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_list_collection_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collection/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collection",
            "files"
          ]
        },
        "description": "Search and list static files in a Siteleaf collection with sorting and agent-controlled pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"query\": \"\",\n  \"site_id\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"collection_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_list_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collections"
          ]
        },
        "description": "List content collections in a Siteleaf site with agent-controlled pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_list_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "documents"
          ]
        },
        "description": "Search and list documents in a Siteleaf collection with visibility, extension, sorting, and pagination filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"query\": \"\",\n  \"site_id\": \"\",\n  \"per_page\": 0,\n  \"extensions\": \"\",\n  \"visibility\": \"\",\n  \"next_cursor\": \"\",\n  \"collection_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_list_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pages"
          ]
        },
        "description": "Search and list pages in a Siteleaf site with visibility, extension, sorting, and pagination filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"query\": \"\",\n  \"site_id\": \"\",\n  \"per_page\": 0,\n  \"extensions\": \"\",\n  \"visibility\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_list_site_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/site/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "site",
            "users"
          ]
        },
        "description": "List users who have access to a Siteleaf site with agent-controlled pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_list_sites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sites"
          ]
        },
        "description": "List sites accessible to the connected Siteleaf account, with optional sorting and agent-controlled pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_publish_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/publish/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "publish",
            "site"
          ]
        },
        "description": "Start an asynchronous compile-and-publish job for a Siteleaf site and return its job ID. This publishes externally visible site content and does not wait for job completion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_update_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "collection"
          ]
        },
        "description": "Update at least one of a collection's title, path, permalink, output behavior, or metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"output\": false,\n  \"site_id\": \"\",\n  \"metadata\": {},\n  \"new_path\": \"\",\n  \"permalink\": \"\",\n  \"collection_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_update_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "document"
          ]
        },
        "description": "Update at least one of a document's content, path, taxonomy, visibility, metadata, or date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"date\": \"\",\n  \"path\": \"\",\n  \"tags\": \"\",\n  \"title\": \"\",\n  \"metadata\": {},\n  \"permalink\": \"\",\n  \"categories\": \"\",\n  \"visibility\": \"\",\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_update_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "page"
          ]
        },
        "description": "Update at least one of a page's content, path, visibility, metadata, or publication date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"date\": \"\",\n  \"path\": \"\",\n  \"title\": \"\",\n  \"page_id\": \"\",\n  \"metadata\": {},\n  \"permalink\": \"\",\n  \"visibility\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_update_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "role"
          ]
        },
        "description": "Change an existing Siteleaf role to admin, publisher, or writer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"kind\": \"\",\n  \"role_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_update_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "site"
          ]
        },
        "description": "Update at least one of a site's title, domain, timezone, metadata, or Jekyll content defaults. Hosting credentials and repository sync are intentionally not accepted as agent inputs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"domain\": \"\",\n  \"site_id\": \"\",\n  \"defaults\": \"\",\n  \"metadata\": {},\n  \"timezone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "siteleaf_upsert_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "source"
          ]
        },
        "description": "Create or replace one raw source file in a Siteleaf site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"site_id\": \"\",\n  \"source_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}