Skip to content
  • Auto
  • Light
  • Dark
Get Started

Retrieve

Get
get/api/v1/directories/{app_id}

Get a directory by app_id.

Path Parameters
app_idstring

The appId field.

Returns
directoryViewappPathstringdirectoryobjectDirectoryView
optional

The directory view contains a directory and an app_path which is a JSONPATH set to the location in the expand mask that the expanded app will live if requested by the expander.

expandedarray of object
optional

List of serialized related objects.

Hide ParametersShow Parameters
@typestring
optional

The type of the serialized message.

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