API v2
  • Overview
    • Authentication
    • API Host
    • Error Codes
  • API Reference
    • CSVUploads
    • Explores (Deprecated)
    • Folders
    • Reports
Powered by GitBook
On this page
  1. API Reference

Folders

PreviousExplores (Deprecated)NextReports

Last updated 1 year ago

Retreive

get
Path parameters
idstringRequired

folder id

Responses
200
Details about the folder
application/json
get
GET /api/v2/folders/{id} HTTP/1.1
Host: api_host
Accept: */*
200

Details about the folder

{
  "id": "8aec2615e1c540d2b71129a3a9e5fdc3",
  "name": "User-sharad",
  "createTime": 1660439099000,
  "updateTime": 1660445539000
}

Retreive all

get
Responses
200
List of folders
application/json
get
GET /api/v2/folders HTTP/1.1
Host: api_host
Accept: */*
200

List of folders

[
  {
    "id": "8aec2615e1c540d2b71129a3a9e5fdc3",
    "name": "User-sharad",
    "createTime": 1660439099000,
    "updateTime": 1660445539000
  }
]
  • GETRetreive
  • GETRetreive all