Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex DataLens
  • DataLens neuroanalyst
  • DataLens Gallery
    • How to use the Public API
      • Overview
      • getConnection
      • createConnection
      • updateConnection
      • deleteConnection
      • getDashboard
      • createDashboard
      • updateDashboard
      • deleteDashboard
      • getDataset
      • createDataset
      • updateDataset
      • deleteDataset
      • validateDataset
      • getEntriesRelations
      • getEntries
      • getQLChart
      • deleteQLChart
      • getWizardChart
      • deleteWizardChart
      • getEditorChart
      • deleteEditorChart
      • createEditorChart
      • updateEditorChart
      • getEntriesPermissions
      • getAuditEntriesUpdates
      • listDirectory
  • Audit Trails events

In this article:

  • HTTP request
  • Body parameters
  • Response
  • RelationsItem
  • Permissions
  • FullPermissions
  1. DataLens Public API
  2. DataLens API
  3. getEntriesRelations

DataLens API: Get entries relations

Written by
Yandex Cloud
Updated at January 16, 2026
  • HTTP request
  • Body parameters
  • Response
  • RelationsItem
  • Permissions
  • FullPermissions

HTTP requestHTTP request

Returns the specified DataLens entries relations.

POST https://api.datalens.yandex.net/rpc/getEntriesRelations

Body parametersBody parameters

Request schema: application/json

{
  "entryIds": [
    "string"
  ],
  "linkDirection": "string",
  "includePermissionsInfo": "boolean",
  "limit": "number",
  "pageToken": "string",
  "scope": "string"
}

Field

Description

entryIds[]

string

Required field. ID of the entries to get relations for.

linkDirection

enum

The direction of the link relatively to the original entry:

  • from — entries that are linked to the original entry;
  • to — the original entry is linked to the entries.

includePermissionsInfo

boolean

Include permission information in the response.

limit

number

Maximum number of results to return.

pageToken

string

Token for retrieving the next page of results.

scope

enum

Type of the entry:

  • dash — dashboard;
  • widget — chart;
  • dataset — dataset;
  • folder — folder;
  • connection — connection.

ResponseResponse

HTTP Code: 200

Response

Response schema: application/json

{
  "relations": [
    {
      "entryId": "string",
      "key": "string | null",
      "scope": "string",
      "type": "string",
      "createdAt": "string",
      "public": "boolean",
      "tenantId": "string | null",
      "workbookId": "string | null",
      "collectionId": "string | null",
      "isLocked": "boolean",
      "permissions": {
        "execute": "boolean",
        "read": "boolean",
        "edit": "boolean",
        "admin": "boolean"
      },
      "fullPermissions": {
        "listAccessBindings": "boolean",
        "updateAccessBindings": "boolean",
        "limitedView": "boolean",
        "view": "boolean",
        "update": "boolean",
        "copy": "boolean",
        "move": "boolean",
        "delete": "boolean",
        "createEntryBinding": "boolean",
        "createLimitedEntryBinding": "boolean"
      }
    }
  ],
  "nextPageToken": "string"
}

Field

Description

relations[]

RelationsItem

Required field. List of related entries.

nextPageToken

string

Token for retrieving the next page of results.

RelationsItemRelationsItem

Field

Description

entryId

string

Required field. Unique identifier of the entry.

key

string | null

Required field. Key identifier of the entry.

scope

enum

Required field. Type of the entry:

  • dash — dashboard;
  • widget — chart;
  • dataset — dataset;
  • folder — folder;
  • connection — connection.

type

string

Required field. Specified type of the entry from scope (e.g. type of the connection or visualization type for charts).

createdAt

string

Required field. Creation timestamp.

public

boolean

Required field. Indicates if the entry is public.

tenantId

string | null

Required field. ID of the DataLens tenant.

workbookId

string | null

Required field. ID of the workbook the entry belongs to.

collectionId

string | null

Required field. ID of the collection the entry belongs to.

isLocked

boolean

permissions

Permissions

Required field. Basic permissions for the entry.

fullPermissions

FullPermissions

Required field. Full permissions for the entry.

PermissionsPermissions

Field

Description

execute

boolean

Required field. Permission to execute.

read

boolean

Required field. Permission to read.

edit

boolean

Required field. Permission to edit.

admin

boolean

Required field. Permission to administer.

FullPermissionsFullPermissions

Field

Description

listAccessBindings

boolean

Required field. Permission to list access bindings.

updateAccessBindings

boolean

Required field. Permission to update access bindings.

limitedView

boolean

Required field. Permission for limited viewing.

view

boolean

Required field. Permission to view.

update

boolean

Required field. Permission to update.

copy

boolean

Required field. Permission to copy.

move

boolean

Required field. Permission to move.

delete

boolean

Required field. Permission to delete.

createEntryBinding

boolean

Required field. Permission to create entry binding.

createLimitedEntryBinding

boolean

Required field. Permission to create limited entry binding.

Was the article helpful?

Previous
validateDataset
Next
getEntries
© 2026 Direct Cursus Technology L.L.C.