Skip to content
  • Auto
  • Light
  • Dark
Get Started

List

List
get/api/v1/directories

List directories.

Query Parameters
page_sizenumber
optional

The pageSize field.

formatint32
page_tokenstring
optional

The pageToken field.

Returns
expandedarray of object
optional

The nextPageToken is shown for the next page if the number of results is larger than the max page size. The server returns one page of results and the nextPageToken until all results are retreived. To retrieve the next page, use the same request and append a pageToken field with the value of nextPageToken shown on the previous page.

Hide ParametersShow Parameters
@typestring
optional

The type of the serialized message.

listarray of appPathstringdirectoryobjectDirectoryView
optional

The list of results containing up to X results, where X is the page size defined in the request.

nextPageTokenstring
optional

List of serialized related objects.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/directories \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "expanded": [
    {
      "@type": "@type"
    }
  ],
  "list": [
    {
      "appPath": "appPath",
      "directory": {}
    }
  ],
  "nextPageToken": "nextPageToken"
}