Packages
Get package details and metadata Copy pageRetrieves detailed information about a specific package, including its models, notebooks, databases, and metadata. The reload parameter can be used to refresh the package state from disk before returning the information. The versionId parameter allows access to specific package versions.
GET /environments/{environmentName}/packages/{packageName}
Authorization Bearer <token>
Version identifier for the package
Load / reload the package before returning result
cURL
JavaScript
Go
Python
Java
C#
Rustcurl --request GET \ --url 'https://example.com/environments/string/packages/string' \ --header 'Authorization: Bearer <token>'
200 401 404 500 501 503
{ "resource": "string", "name": "string", "description": "string", "location": "string", "explores": [ "string" ], "exploresWarnings": [ "string" ], "warnings": [ { "model": "string", "target": "string", "message": "string", "severity": "error" } ], "queryableSources": "declared", "manifestLocation": "string", "scope": "version", "materialization": { "schedule": "string", "freshness": { "window": "string", "fallback": "live" } }, "manifestBindingStatus": "unbound", "manifestEntryCount": 0, "boundManifestUri": "string", "buildPlan": { "graphs": [ { "connectionName": "string", "nodes": [ [ { "sourceID": "string", "dependsOn": [ "string" ] } ] ] } ], "sources": { "property1": { "name": "string", "sourceID": "string", "connectionName": "string", "dialect": "string", "sourceEntityId": "string", "sql": "string", "refresh": "string", "freshness": { "window": "string", "fallback": "live" }, "columns": [ { "name": "string", "type": "string" } ], "annotationFields": { "property1": "string", "property2": "string" }, "modelPath": "string" }, "property2": { "name": "string", "sourceID": "string", "connectionName": "string", "dialect": "string", "sourceEntityId": "string", "sql": "string", "refresh": "string", "freshness": { "window": "string", "fallback": "live" }, "columns": [ { "name": "string", "type": "string" } ], "annotationFields": { "property1": "string", "property2": "string" }, "modelPath": "string" } } } }