draft = requests.post(f"BASE_URL/rest/api/content/blueprint/instance/draft", headers=HEADERS, json=payload).json()
# Step 3: Update draft update_payload = "id": draft["id"], "title": title, "body": "storage": "value": body, "representation": "storage" requests.put(f"BASE_URL/rest/api/content/draft['id']", headers=HEADERS, json=update_payload)
Deploy Python + REST API script stored in a Git repo, triggered via CI/CD (GitHub Actions, Jenkins). Use CSV as source of truth.
Teams needing to generate documentation structures (e.g., 30 product requirement documents, 50 meeting note pages, or a wiki tree for each client) face significant manual overhead.
def create_page_from_template(title, template_id, space_key, parent_id, variables): # Step 1: Create draft from template payload = "title": title, "spaceId": get_space_id(space_key), # helper function "parentId": parent_id, "templateId": template_id