Hi, I’m not an expert on API’s But I just want to know any help that you could give me.
I have an app that is already functional and ready to be deployed.
Now I want to connect that app with an other software, where every time I create a new row in my table, It creates/sends the information to the other software (Kometsales).
I already have the Key and the API for Add information to komet.
On my app I created a workflow that triggers When I ADD a new row and call a webhook with the URL that I have and send the information with the JSON code.
This is my JSON
{
“Action”: “Add”,
“Properties”: {
“Locale”: “en-US”,
“Timezone”: “Pacific Standard Time”,
},
“Rows”: [
{
“ID Token”: “<<UNIQUEID()>>”,
“ProductCode”: “<<[Código de Barras]>>”,
“StemsBunch”: “<<[Tallos por Ramo]>>”,
“unittype”: “Bunch”,
“quantity”: “<<[Cantidad Ramos Cortados]>>”,
“block”: “<<[Código de Barras]>>”,
“bed”: “<<[Código de Barras]>>”,
“cutter”: “<<[Código Cortador]>>”,
“customercode”: “<<[ID Cliente]>>”,
“cutDate”: “<<TEXT([Fecha Corte],“yyyy-mm-dd”)>>”
}
]
}
So now I have 2 questions about this.
- I have a key that the people from kometsale gave me and I never used that to create what I said before, so, did I make something wrong ?
- In that way that I already made it, it belongs to PRO plan or BUSSINES plan ?



