Read Pull Data Record
GET/v3/config/data-space/pull-data-record/:pullDataRecordId
Reads a specific Pull Data Record.
Request
Path Parameters
pullDataRecordId stringrequired
ID of the Pull Data Record between a Data Source and Data Using Service
Responses
- 200
- 401
- 404
- 500
Pull Data Record read
Response Headers
Content-Type json
Content-Type header
- application/json
- Schema
- Example (from schema)
Schema
pullDataRecord object
Record of a Pull Data request
id stringrequired
ID of the Pull Data Record between a Data Source and Data Using Service
dataDisclosureAgreementTemplateRevisionId stringrequired
ID of the Data Disclosure Agreement Template Revision that defines data was pulled against
dataDisclosureAgreementRecordRevisionId stringrequired
ID of the Data Disclosure Agreement Record Revision that defines the agreement between the Data Source and Data Using Service
nonce stringrequired
Randomly generated nonce
createdAt intrequired
Timestamp of the Pull Data Record creation
token stringrequired
The Access Token used for pulling data
{
"pullDataRecord": {
"id": "string",
"dataDisclosureAgreementTemplateRevisionId": "string",
"dataDisclosureAgreementRecordRevisionId": "string",
"nonce": "string",
"token": "string"
}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Resource not found
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...