POST
/
fileexporter
/
v1
/
static
/
listfeedformats
curl --request POST \
  --url https://api.sandbox.asapp.com/fileexporter/v1/static/listfeedformats \
  --header 'Content-Type: application/json' \
  --header 'asapp-api-id: <api-key>' \
  --header 'asapp-api-secret: <api-key>' \
  --data '{
  "feed": "feed_test",
  "version": "1"
}'
{
  "feed": "feed_test",
  "version": "1",
  "formats": [
    "jsonl",
    "csv"
  ]
}

Authorizations

asapp-api-id
string
header
required
asapp-api-secret
string
header
required

Body

application/json

Get format for a company feed/version

feed
string
required
version
string
required

Response

200
application/json
Successfully requested feed formats

Get formats for a company feed

feed
string
version
string
formats
string[]