Questions tagged [quickbase]

Quick Base is a low-code platform that allows non-technical developers to build, customize and connect scalable, secure cloud applications mapped to unique business challenges without compromising IT governance and control.The platform handles broad set of biz use cases through its customizable application platform that also provides API layer for interactions.

Quick Base is web-based collaborative database application that allows businesses to create their own custom applications with less code than traditional databases. Quick Base was created when Intuit acquired Turning Mill Software in 1999. Intuit divested Quick Base in 2016. At that time, Quick Base became a stand alone product.

QuickBase includes an XML webservices API, which allows for custom user workflows.

Source: https://en.wikipedia.org/wiki/QuickBase,_Inc.

103 questions
4
votes
3 answers

Examples of Quickbase API in C#

I am fairly new to the use of APIs and haven't touched Quickbase until today. I was researching the Quickbase API and it seemed as if all the examples I saw were written in XML or some similar variant. Is there a way to write code in C# that will do…
N. Mao
  • 499
  • 1
  • 10
  • 19
3
votes
0 answers

xsd schema application to xml document?

I am attempting to transfer data from a quickbase database to another application. I have the .xsd schema the receiving application will accept and the ability to export a flat .xml file from quickbase. Quickbase provides the ability to apply a .xsl…
JimmyF
  • 76
  • 7
2
votes
1 answer

Python QuickBase API Help

Hey, I'm having some trouble using the QuickBase API from Python. From the QuickBase guide, there are two methods of hitting the API: POST and GET. I can handle the GET calls, but some API methods require XML to be sent over POST. The link to…
Dan Lorenc
  • 5,376
  • 1
  • 23
  • 34
2
votes
1 answer

I have found this error while am adding data to quickbase database?

I am new for quickbase , i am adding a data into my quickbase database and i have fond the resut as API_AddRecord34You cannot change the value of this fieldThe field named…
2
votes
1 answer

How to parse paginated JSON API response with complex nesting and unnamed array?

I have built (with the help of @EmielZuurbier) an invoice template which places an API call to Quickbase. The API response is paginated. How can I parse the paginated response into a single table? Quickbase API Endpoint:…
2
votes
2 answers

How can i access values in an array of Objects using typescript with angular 9?

I am trying to retrieve values from a table in quickbase. this is what i have so far.... service.ts public getNativeFields(){ let headers = new HttpHeaders().set("QB-Realm-Hostname", "xxxxxx.quickbase.com").set("Authorization",…
Hugh
  • 19
  • 5
2
votes
1 answer

how to properly insert into quickbase via Curl in php

I created table with the following 3 fields with quickbase name,email,post Now am trying to insert into the table via table id with quickbase. here is the documentation API Link API lINK here is the API Curl documentation curl -X POST…
Nancy Moore
  • 2,322
  • 2
  • 21
  • 38
2
votes
3 answers

Javascript to find get latitude and longitude from Google Maps

I'm trying to pull the latitude/longitude from an API call to Google Maps. The code I am using is the following: var text gMaps = "https://maps.googleapis.com/maps/api/geocode/xml?address=" & URLEncode(SearchAndReplace([Related Staff - Address],"…
Thadd
  • 21
  • 3
2
votes
1 answer

Is there a way to concatenate across rows and columns in QuickBase?

As it stands, I have a student table (where each student has a unique row) and an exam table (where each student's exam attempt has a row; the student table is one to many to the exam table). I want to see if it's possible to add a column to the…
vvquiuno
  • 41
  • 4
2
votes
1 answer

Is there a way to write a file to an FTP Server that uses SSL using R?

I have an R script that pulls data down from QuickBase in a .csv format using RCurl. Currently, when using the write.table function I just direct it to a local folder. I am wanting to write directly to an FTP Site that I believe is using SSL. I have…
tanyrseay
  • 31
  • 2
2
votes
1 answer

How to access the moment object (from moment.js) from a QuickBase custom script

I've been writing a custom script for QuickBase, which requires some date manipulation. I decided to use moments.js and, since I'm using it within quickbase, I am loading moments.js dynamically, using $.getscript. I've done this process before with…
2
votes
1 answer

How to upload a file using Quickbase API in C#?

I'm using the Quickbase C# SDK to submit a form to Quickbase from an external site. I want to attach a file along with the form and can't seem to figure out how to do so. Below is a stripped version of my code: ASPX
1
vote
1 answer

How do i do the following task with quickbase?

How do i know the users who added the record in quickbase table or who have the permission to add ,Edit or delete the record or how can i check the flow of adding a data into quickbase tables ?
1
vote
2 answers

Jinja2 template return nothing if variable is undefined

I'm using Quickbase Pipelines trying to get some information to show in a notification email only if that variable (call rating) is defined. I've tried: Audio Time: {{c.audio_time_min|int}} {% if c.call_rating != '' %} Call Rating:…
D Johnson
  • 11
  • 2
1
vote
1 answer

Incompatible value for Quickbase Date Field

I have a feature where I update the values on Quickbase for our system. I am able to update most fields, checkboxes, text inputs and numerical data.. using this kind of query { "to":"appid", "data": [ { "3": { "value": 1…
Jolo
  • 67
  • 1
  • 4
1
2 3 4 5 6 7