GET
/
api
/
external
/
v2
/
exports
/
fecs
/
{id}
Retrieve a FEC export
curl --request GET \
  --url https://app.pennylane.com/api/external/v2/exports/fecs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 124,
  "file_url": "https://app.pennylane.com/my_export.xlsx",
  "status": "pending",
  "created_at": "2023-08-30T10:08:08.146343Z",
  "updated_at": "2023-08-30T10:08:08.146343Z"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer
required

Existing export identifier (id)

Example:

1

Response

Returns the export

id
integer
required

ID of the export

Example:

124

file_url
string | null
required

URL to download the export file. The URL will expire after 10 minutes.

Example:

"https://app.pennylane.com/my_export.xlsx"

status
enum<string>
required

The state of the export

Available options:
pending,
ready,
error
created_at
string<date-time>
required
Example:

"2023-08-30T10:08:08.146343Z"

updated_at
string<date-time>
required
Example:

"2023-08-30T10:08:08.146343Z"