Read data attributes
GET/config/data-agreement/:dataAgreementId/data-attributes
This endpoint reads all data attrinbutes defined in a data agreement.
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.
Responses
- 200
- 400
- 401
- 500
Data attributes for data agreement listed successfully
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
dataAttributes object[]
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
{
"dataAttributes": [
{
"id": "65471222e8c7c3bb3c2c8501",
"name": "Name",
"description": "Full name of the individual",
"sensitivity": false,
"category": "Personal",
"scope": "read",
"dataAgreement": {
"id": "string",
"purpose": "string"
}
}
],
"pagination": {
"currentPage": 1,
"totalItems": 25,
"totalPages": 3,
"limit": 10,
"hasPrevious": false,
"hasNext": true
}
}
bad input parameter
Response Headers
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Loading...