Hi,
I'm trying to upload some data to dropbox through Api with Filemaker, the data is uploaded but it's saved on the root path instead of the Dropbox Path I'm sending.
JSONSetElement ( "{}" ;
[ "documentID" ; dropbox__DOCUMENT__dropboxID__cre::__kptID ; JSONString ] ;
[ "documentName" ; dropbox__DOCUMENT__dropboxID__cre::zctFileNameContainer ; JSONString ] ;
[ "dropboxPath" ; "/2.DPTO.COMERCIAL/2.1.PRESUPUESTOS/2.1.3.PLANTILLAS CALCULO DE PRESUPUESTOS/0.BBDD PRECIOS MATERIALES/" & Substitute ( dropbox__DOCUMENT__dropboxID__cre::zctFileNameContainer ; [ "/" ; " " ] ; [ "-" ; " " ] ); JSONString ] )
as you can see the path is the route: /2.DPTO.COMERCIAL/2.1.PRESUPUESTOS/2.1.3.PLANTILLAS CALCULO DE PRESUPUESTOS/0.BBDD PRECIOS MATERIALES/
I don't understand why dropbox is saving the data at the root
Thank you