List Pull Data Records
GET/config/data-space/pull-data-records
Lists Pull Data Records, optionally filtered by Data Disclosure Agreement Template (Revision ID) and/or Data Disclosure Agreement Record (Revision ID).
Request
Query Parameters
Requested index for start of resources to be provided in response requested by client
Default value: 10
Number of items returned per page. Requested number of resources to be provided in response requested by client.
Filter by Data Disclosure Agreement Template Revision ID
Filter by Data Disclosure Agreement Record Revision ID
Responses
- 200
Data Marketplace related Connections listed
Response Headers
Content-Type json
Content-Type header
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
pullDataRecords object[]
ID of the Pull Data Record between a Data Source and Data Using Service
ID of the Data Disclosure Agreement Template Revision that defines data was pulled against
ID of the Data Disclosure Agreement Record Revision that defines the agreement between the Data Source and Data Using Service
Randomly generated nonce
Timestamp of the Pull Data Record creation
The Access Token used for pulling data
pagination object
Current page number
Total number of items available
Total number of pages based on limit
Number of items per page
Indicates if there's a previous page
Indicates if there's a next page
{
"pullDataRecords": [
{
"id": "string",
"dataDisclosureAgreementTemplateRevisionId": "string",
"dataDisclosureAgreementRecordRevisionId": "string",
"nonce": "string",
"token": "string"
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}