Consistentidentities

Gallery uploaded faces - list files

Paginated version of the gallery uploaded faces. List files in a specific folder, including shared folders. Only at the first level. You can access subfolders using the path parameter.

inputs:

  • path: Non empty [String], path to list (optional)
  • page: [Integer], page number, default: 0
  • items_per_page: [Integer], number of items per page, default: 1000
  • shared_folder: [String], shared folder name (optional)
POST
/api/consistent_identities/gallery_faces/list_files
AuthorizationBearer <token>

In: header

page?integer
items_per_page?integer
path?string
shared_folder?string

Response Body

Examples

curl -X POST "https://api.piktid.com/api/consistent_identities/gallery_faces/list_files" \
  -H "Content-Type: application/json" \
  -d '{}'
{
  "data": [
    {
      "l": "string",
      "n": "string",
      "t": "string"
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "description": "string"
}