Power Automate Formstack Connector

When using the "When a form is submitted trigger" I am pulling attachments from the form submission table to feed into my SharePoint site. However the "FILE TYPE" is not a data point within the Power Automate data points. E.g., you use "When a form is submitted" to kick off the flow and identify the data source to pull from. I then do a parse JSON because the return payload is base64, so I use a Parse JSON action to show me the schema of the base64 output from Formstack, I can then totally id my different attributes of the form from the submission table. But for attachments, there is no way to get the file type. When you use a create file action for SharePoint I have to hard code the file type because it isn't given in the output from Formstack. How do I get to pull an attachment from Formstack Submission table, using the Formstack Power Automate premium action?

Add webhook fields through an API

How to add the following fields in a webhook through an API? I was not able to find these fields in the resources. 1. EMAIL ON FAILURE. 2. Allow full credit card data to be sent through webhook 3. HMAC KEY Thanks

V4 forms - jumping down page

I tried searching for related posts, but not finding any I wanted to ask - with the v4 form update, is anyone else experiencing form-jump? FS is explaining it as an issue with our CMS, but the exact same form in v3 does not jump. I'm not getting any info as to what the conflict might be to even begin troubleshooting. Hoping to find some insight here. I appreciate anyone's time to share their experience.

oauth2/token API endpoint is throwing error

Error - {"error":"invalid_request","error_description":"Invalid grant_type parameter or parameter missing"} ``` "grant_type": "authorization_code", ```

Only one auth mechanism allowed

I am trying to utilize the Try It API for the /download/:submission_id/:field_id api. I am getting the following error. Any idea how I can resolve this issue? <Error><Code>InvalidArgument</Code><Message>Only one auth mechanism allowed; only the X-Amz-Algorithm query parameter, Signature query string parameter or the Authorization header should be specified</Message><ArgumentName>Authorization</ArgumentName><ArgumentValue>Bearer xxxxx</ArgumentValue><RequestId>W89VPMM3MYQK76GH</RequestId><HostId>xxxx</HostId></Error>

How to center dynamic images (via Powerpoint templates) with different width?

In Powerpoint I am using a dynamic image, something like this: {$imageVariableName|insert_image:117:0:0:41} The potential images differ in width. The resulting PDF file has the image aligned on the left. The image should be aligned in the center. Is this possible? This is the result I want (for the 2nd images): ![](https://files.readme.io/8efac8b-image.png) This is the result I get: ![](https://files.readme.io/00e4286-image.png) How to center the dynamic image?

Return true/ false for checkbox

Hi, I'm trying to return true for each checkbox that is checked. Is this possible? I'm currently using values for the check boxes however each has to be unique, i.e I cant put true multiple times. Cheers Adam

Can an API changelog be added?

Recent API changes related to encryption passwords have been breaking our API. Is it possible to add a changelog for the API so we can have some knowledge that things have changed?

Using a maps to position a pin and collect the coordinates in the form

Hi, I'm wondering if there would be a way to embed a map view (Google Maps or any) to for the user to place a pin on it and then collect coordinates when they send the form.

Remove HTML document elements from JS embed?

Hi, I've created a form and want to embed it using JS. However, the JS snippet seems to include HTML document elements: document.write("<!DOCTYPE html>"+"\\n"); document.write("\<html lang=\"en\">"+"\\n"); document.write("<head>"+"\\n"); document.write(" \<meta charset=\"UTF-8\" />"+"\\n"); document.write(" \<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"+"\\n"); This makes it difficult for me to embed the form in the middle of an existing page. How do I remove these HTML document elements? Thanks!