Buzzy Documentation
  • Welcome to Buzzy
  • Getting Started with Buzzy
    • Getting Started Guide
      • 1. Starting with Buzzy AI
      • 2. The Buzzy Workspace
      • 3. Create a new app
      • 4. Preview and edit your app
      • 5. Manage your app
      • 6. Import your app to Figma
      • 7. Using Buzzy with Figma
      • 8. The Buzzy Figma plugin
      • 9. Creating a simple app
      • 10. Screens and navigation
      • 11. Forms, fields and data
      • 12. Data-driven menus & content
      • 13. Data edit and delete
      • 14. Search, sort and filter
      • 15. User login and registration
    • Buzzy AI or Figma first?
  • Working with Buzzy
    • Buzzy AI
      • About Buzzy AI
      • Kickstart with AI
      • Enhance with Figma
      • Extend with Code
      • Example prompts
      • Tips
      • Troubleshooting Buzzy AI
      • AI tokens and pricing
    • Buzzy for Figma
      • About Buzzy for Figma
      • Learning Figma
      • Creating a new app directly in Figma
        • Step by step version
      • Automarkup
      • Responsive layouts
      • Responsive layout checklist
      • Overflow and scrolling
      • Forms and fields
      • Images and galleries
      • Logging users in to your app
      • Theming
      • Troubleshooting Buzzy for Figma
      • Plugin error messages
    • Buzzy Deployment & App Stores
      • Setting up your custom Buzzy app
      • Connecting your own server
      • Apple & Google App Stores
    • Buzzy Marketplace
      • Buzzy Accreditation
    • Buzzy Project Guide
    • Buzzy App Examples
      • Buzzy Templates
      • AI-Powered Chat App
      • AI-Powered Custom T-Shirt App
      • AI-Powered Strategy App
      • AI-Powered Stock Portfolio App
      • Golf Course Finder
      • Personal Finance App with Figma AI
    • FAQs
  • The building blocks
    • Datatables, Fields & Data
      • Introduction to Fields
      • Basic Fields
        • Text
        • Number
        • Date
        • Location
        • Toggle
        • Checkboxes
        • Checklist
        • Selectlist
        • Rating
        • Attachments
        • Images
        • Signature
        • Audio Recording
        • Embedded Link
      • Advanced Fields
        • Formula
        • Sub tables
        • Linked Table field
        • Button
        • Teams
        • Payment
        • Notification
        • Event
        • User Vote
      • Display Fields
        • Header
        • Display Text
        • Image
        • Divider
      • Metadata Fields
        • Author Name
        • Author Phone
        • Submitted
      • Filter Controls
        • Viewers
        • Tags
        • Condition
      • External Fields
        • IBM Connections File
        • Box File
      • Sort Fields
      • Formulas
      • Datatable to Datatable Relationships
      • Security and Access Control
      • Displaying a field based on the values of other fields
      • Hiding a field based on role using a display formula
      • Importing data from a text file
      • Importing data from a URL
      • Import data from Datatable
      • Export data using Chrome
      • Export data in Browser
      • Export data using Safari
      • Datatable Field Type - Cheat Sheet
      • Troubleshooting Fields & Data
    • Code widget (custom code)
      • Code Widget Fields - Advanced Guide
      • New Async API + React HTML Components
      • Examples
        • Image Galley Slideshow
        • Ratings Average and Distribution
        • Event Locations Map
    • Analytics
  • Troubleshooting
    • App Error Codes
      • Action Error
      • App Not Found
      • Component Missing
      • Component Not Set
      • Component Settings Error
      • Datatable Not Found
      • Datatable Not Set
      • Field Not Found
      • Field Not Set
      • No App Selected
      • No Context Name
      • No Screens Found
      • Runtime Exception
      • Screen Not Found
      • Screen Not Set
    • Troubleshooting Buzzy AI
    • Troubleshooting Figma
  • REST API
    • Buzzy REST API
      • Integrating 3rd party applications
      • REST API
        • login
        • createappwithprompt
        • MicroApp Data Operations
          • microappdata
          • microappdata/row
          • insertmicroapprow
          • updatemicroapprow
          • removemicroapprow
          • microappchild
        • User & Organization Operations
          • userid
          • insertteammembers
          • teammembers
          • insertorganization
          • insertteam
        • enforceteammembership
      • Node.js API Client
      • Datatable Rules
      • Datatabledata Tutorial
      • Integrating with Mailchimp
      • Python Access Datatable
  • Advanced Deployment Settings
    • Installation
      • Pre-installation Planning
      • Deployment
        • Introduction to deployment
        • Minikube install guide
        • AWS ECS Fargate install guide
        • HCL Connections install guide
        • Azure AKS install guide
        • Windows container install guide
      • Buzzy settings
      • Whitelabelling Buzzy
      • Certificates
      • Release Management
    • Performance and Reliability
    • Security
      • Platform
      • Users and Roles
      • Datatables
      • Audit Trail
Powered by GitBook
On this page
  • Steps
  • Example JSONata import script
  1. The building blocks
  2. Datatables, Fields & Data

Import data from Datatable

PreviousImporting data from a URLNextExport data using Chrome

Last updated 1 year ago

Buzzy provides a method for transferring data from one Datatable to another by using . A good understanding of the is helpful.

Steps

  1. If required, schedule a maintenance period to transfer the data.

  2. Stop all the traffic to the source Datatable

  3. Create an empty Datatable (Application) for the destination

  4. Select the Properties, Advanced, Data Source, URL Import.

  5. Enter the JSONata script

  6. Preview the results and make any required changes

  7. Select Import

  8. Validate the counts for insert and upsert in the message window

Example JSONata import script

{
  "variables": {
    "host": "https://ssc.preciselydemos.com"
  },
  "secrets": {
    "username": "",
    "password": ""
  },
  "source": {
    "description": "Get data from Buzzy",
    "type": "url",
    "config": {
      "resultObject": "content",
      "url": "https://ssc.preciselydemos.com/api/microappdata",
      "method": "POST",
      "paging": {
        "param": "skip",
        "data": [
          "searchFilter",
          0,
          "skip"
        ],
        "check": "$count(body.microAppRows)>0",
        "increment": 1000,
        "start": 0
      },
      "headers": {
        "X-Auth-Token": "<your Buzzy Token>",
        "X-User-Id": "<your Buzzy User Id>"
      },
      "params": {},
      "auth": {
        "user": "{{username}}",
        "pass": "{{password}}"
      },
      "data": {
        "microAppID": "3193e251fb056b5df56b9298",
        "searchFilter": [
          {
            "resourceID": "3193e251fb056b5df56b9298",
            "order": 1,
            "field": "1",
            "limit": 1000,
            "skip": 0
          }
        ],
        "buzzyFormat": false
      }
    },
    "transforms": [
      "$.body.microAppRows",
      "$.($each(function($v, $k){$k=\"location\"?{$k:$eval($v)}:{$k:$v}}) ~> $merge())"
    ]
  },
  "fields": [
    {
      "key": "_id",
      "type": "String",
      "unique": true
    },
    {
      "key": "location",
      "type": "GeoJSON"
    }
  ]
}

Import data from URL
Buzzy REST API