Page tree

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

This is the documentation for ConfiForms CLOUD app

ConfiForms app on Atlassian marketplace


In addition to REST API for ConfiForms CLOUD you may want to use services that export ConfiForms data in different than JSON formats

We offer 3 formats:

  • CSV
  • Excel
  • RAW (ConfiForms internal format)

The endpoint to use is https://app.confiforms.net/export/api/v1

Please note that auth is done the same way as on REST API for ConfiForms CLOUD and you need to generate an API access token as explained on the mentioned page

URLMethodDetails

/download/{pageId}/{formName}

(in this case set Auth-Token header)


/download/{pageId}/{formName}/{token}

GET

Request parameters (both optional):

  • format - Supported values:
    • excel
    • csv - default format
    • raw
    • json
  • query - ConfiForms Filters type of expression, url encoded. If left empty then all records are returned

Example:

https://app.confiforms.net/export/api/v1/download/123456/myform/xxx-xxx-xxx-xxx?format=csv&query=sum%3A%3E350%20AND%20type%3AInvoice

(sum%3A%3E350%20AND%20type%3AInvoice is an encoded value of sum:>350 AND type:Invoice)
  • No labels