Skip to main content

List data attributes

GET 

/service/data-agreement/:dataAgreementId/data-attributes

This endpoint is used to read the data attributes defined in a particular data agreement revision.

Request

Path Parameters

    dataAgreementId stringrequired

    Unique ID of an object

Query Parameters

    offset integerrequired

    Number of records to skip for pagination.

    limit integerrequired

    Default value: 10

    Maximum number of records to return per page.

    revisionId stringrequired

    An object with ID revisionId

Responses

Data attributes for data agreement listed successfully

Response Headers
    Schema
      dataAttributes object[]
    • Array [
    • id string

      Data attribute ID

      name stringrequired

      Name of the attribute, for instance "name" or "age"

      description stringrequired

      Description of the attribute

      sensitivity boolean

      Sensitivity of data attribute

      category string

      Category of data attribute

      scope string

      Scope required for data attribute

    • ]
    • pagination object
      currentPage integer

      Current page number

      totalItems integer

      Total number of items available

      totalPages integer

      Total number of pages based on limit

      limit integer

      Number of items per page

      hasPrevious boolean

      Indicates if there's a previous page

      hasNext boolean

      Indicates if there's a next page

    Loading...