GET
/
v2
/
project
/
folder
curl --request GET \
  --url https://api.sonderplan.com/v2/project/folder \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 2345,
      "name": "Andor Season One",
      "parent_folder_id": 5,
      "created_id": 3,
      "created": 1388552400,
      "updated_id": 3,
      "updated": 1388552400
    }
  ],
  "meta": {
    "pagination": {
      "total": 1,
      "count": 1,
      "per_page": 1,
      "current_page": 1
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

name
string

Perform a partial match text search for the project folder's name

parent_folder_id
integer

Perform an exact match for the project folder's parent_folder_id

page
integer

Specify the page of results you wish to return

limit
integer

The number of results returned per page. Default if not specified is 10

order_asc
string

Specify the field (with type of string or integer) you wish to order (ascending) the response with

order_desc
string

Specify the field (with type of string or integer) you wish to order (descending) the response with

filter_operator
enum<string>
default:OR

Specify if multiple filters should be combined with OR or AND logic

Available options:
OR,
AND

Response

200
application/json
Successful Operation
data
object[]

Returns the fields relevant to project folders

meta
object