Hi everyone, I’m new to Airtable and I’m NOT a coder.
I’m wondering if there is a way of auto-filling fields within a Record using json data?
Basically, I have a web app that automatically converts colour breakdowns for HEX, RGB, HSL, HSB & CMYK into a json file and I’d like to find a way of importing the data into individual fields within my Colour Record.
Here’s a copy of the json file that is generated:
{
“hex”:“#aba7b3”,
“websafe”:“#9999cc”,
“rgb”:{
“r”:171,
“g”:167,
“b”:179
},
“hsl”:{
“h”:260,
“s”:7,
“l”:68
},
“hsb”:{
“h”:260,
“s”:7,
“b”:70
},
“cmyk”:{
“c”:4,
“m”:7,
“y”:0,
“k”:30
}
}
Any help or advice is much appreciated.
Steve