top of page

Forum Posts

Affolter Sascha
Jan 15, 2021
In Coding with Velo
Unfortunately, there many confusions when customers are registering with the Default Signup Form, especially regarding the password policy. Is there an exact explanation like the min/max length of the password and which characters are allowed/disallowed? Thanks for your Help
0
1
30
Affolter Sascha
Dec 25, 2020
In Coding with Velo
I need to upload an external image file to a WIX collection through a C# program using the POST http function. Unfortunately, I have not found a suitable post in the forum. Is there a detailed WIX API instruction for this use case? Thanks!
Upload Image through external http-function content media
0
3
73
Affolter Sascha
Dec 21, 2020
In Coding with Velo
I use an external data collector written in C#. I send the data via the WIX POST http-function into a WIX Collection. There are two fields, one is a date field the other is a numeric field. The external JSON array looks like this: { "dateTime": "2020-12-18T08:00:00Z", "mbPercentagePerformance": 40.79 } The WIX backend function looks like this: export function post_insertFunctionName(request) { let options = {"headers": {"Content-Type": "application/json"}}; // get the request body return request.body.text() .then( (body) => { return wixData.insert("Collection-Name", JSON.parse(body)); } ) .then( (results) => {options.body = {"inserted": results}; return created(options); } ) .catch( (error) => {options.body = {"error is": error}; return serverError(options); } ); } The problem is that the WIX collection can't handle the ISO 8601 date format I'm passing in with the JSON array. The error in the collection is "The value does not match the field type Date and Time". Any help is appreciated! Thanks
External JSON DateTime into Collection content media
0
4
251

Affolter Sascha

More actions
bottom of page