Apps

List apps

GET
Returns apps in an account

Response

This endpoint returns an object
data
list of objects
An app
GET
$curl https://api.x.flatfile.com/v1/apps \
> -H "X-Disable-Hooks: true" \
> -H "Authorization: Bearer <token>"
Response
1{
2 "data": [
3 {
4 "id": "string",
5 "name": "string",
6 "namespace": "string",
7 "type": "PORTAL",
8 "entity": "string",
9 "entityPlural": "string",
10 "metadata": {},
11 "environmentFilters": {},
12 "createdAt": "2023-01-01T00:00:00Z",
13 "updatedAt": "2023-01-01T00:00:00Z",
14 "icon": "string",
15 "deletedAt": "2023-01-01T00:00:00Z",
16 "activatedAt": "2023-01-01T00:00:00Z"
17 }
18 ]
19}