Apis related to Validation.
Interu API Reference//
- Retrieve Source Data References
Create Credential
Retrieve Credential List
Retrieve Credential
Update Credential
Delete Credential
Create DDS Reference
Retrieve DDS Reference List
Find DDS Reference
Resolve DDS Reference
Retrieve DDS Reference
Update DDS Reference
Delete DDS Reference
Add Direct Record(s)
Delete Direct Records
Retrieve Direct Records
Generate DDS Statement
Retrieve Generated/Updated Due Diligence Statement
Update DDS Statement
Regenerate Due Diligence Statement
Submit Due Diligence Statement
Retrieve Source Data Refe...
Interu API (v2_28)
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/extensions/eudr/references/{referenceId}/direct-records
- UAThttps://api.uat.interu.io/organisations/{orgId}/extensions/eudr/references/{referenceId}/direct-records
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/extensions/eudr/references/{referenceId}/direct-records' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "content": [ [ … ] ], "page": { "size": 0, "page": 0, "totalElements": 0, "totalPages": 0 } }
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/extensions/eudr/references/{referenceId}/source-data
- UAThttps://api.uat.interu.io/organisations/{orgId}/extensions/eudr/references/{referenceId}/source-data
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/extensions/eudr/references/{referenceId}/source-data' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "sourceResourceType": "PRODUCT", "products": [ { … } ] }
Bodyapplication/jsonrequired
IF this is set to true then downstream consumers of your DDS Reference will not have access to the Geo Location information.
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/extensions/eudr/references/{referenceId}/statements
- UAThttps://api.uat.interu.io/organisations/{orgId}/extensions/eudr/references/{referenceId}/statements
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/extensions/eudr/references/{referenceId}/statements' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-H 'contentType: application/json' \
-d '{
"operatorType": "OPERATOR",
"activityType": "IMPORT",
"countryOfActivity": "AT",
"borderCrossCountry": "AT",
"comment": "string",
"geoLocationConfidential": true,
"associatedStatements": [
{
"referenceNumber": "string",
"verificationNumber": "string"
}
]
}'Response
application/json
{ "version": 0, "operatorType": "OPERATOR", "activityType": "IMPORT", "countryOfActivity": "AT", "borderCrossCountry": "AT", "commodities": [ { … } ], "comment": "string", "geoLocationConfidential": true, "associatedStatements": [ { … } ], "id": "string", "createdBy": "string", "createdTime": "2019-08-24T14:15:22Z", "updatedBy": "string", "updatedTime": "2019-08-24T14:15:22Z" }