curl --request GET \
--url https://api-next.ofauth.com/v2/access/vault/lists \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"type": "custom",
"name": "<string>",
"hasMedia": true,
"canUpdate": true,
"canDelete": true,
"medias": [
{
"type": "photo",
"url": "<string>"
}
]
}
],
"all": {
"videosCount": 123,
"photosCount": 123,
"gifsCount": 123,
"audiosCount": 123,
"medias": [
{
"type": null
}
]
},
"hasMore": true,
"canCreateVaultLists": true,
"order": "<string>",
"sort": "<string>"
}List vault folders
Permission Required: vault:read
curl --request GET \
--url https://api-next.ofauth.com/v2/access/vault/lists \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"type": "custom",
"name": "<string>",
"hasMedia": true,
"canUpdate": true,
"canDelete": true,
"medias": [
{
"type": "photo",
"url": "<string>"
}
]
}
],
"all": {
"videosCount": 123,
"photosCount": 123,
"gifsCount": 123,
"audiosCount": 123,
"medias": [
{
"type": null
}
]
},
"hasMore": true,
"canCreateVaultLists": true,
"order": "<string>",
"sort": "<string>"
}Requires a connection via the x-connection-id header.
Number of items to return (1-40, default: 24)
1 <= x <= 40Number of items to skip (default: 0)
x >= 0Search/filter text
100Was this page helpful?