POST
/
fileexporter
/
v1
/
static
/
getfeedfile
curl --request POST \
  --url https://api.sandbox.asapp.com/fileexporter/v1/static/getfeedfile \
  --header 'Content-Type: application/json' \
  --header 'asapp-api-id: <api-key>' \
  --header 'asapp-api-secret: <api-key>' \
  --data '{
  "feed": "feed_test",
  "version": "1",
  "format": "jsonl",
  "date": "2022-06-27",
  "interval": "hr=23",
  "fileName": "file1.jsonl"
}'
{
  "feed": "feed_test",
  "version": "1",
  "format": "jsonl",
  "date": "2022-06-27",
  "interval": "hr=23",
  "fileName": "file1.json1",
  "url": "www.example.com/12381273972817312/file1.json1"
}

Authorizations

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

Body

application/json

Get file for a company feed/version/format/interval/file

feed
string
required
Example:

"feed_test"

version
string
required
Example:

"1"

format
string
required
Example:

"jsonl"

date
string
required
Example:

"2022-06-27"

fileName
string
required
Example:

"file1.jsonl"

interval
string
Example:

"hr=23"

Response

200
application/json
Successfully requested feed file

Get a presigned url for a file

feed
string
Example:

"feed_test"

version
string
Example:

"1"

format
string
Example:

"jsonl"

date
string
Example:

"2022-06-27"

interval
string
Example:

"hr=23"

fileName
string
Example:

"file1.json1"

url
string
Example:

"www.example.com/12381273972817312/file1.json1"