Data Systems
Create data system
Compliance Requests
- GETGet organization level compliance requests
- GETGet organization level compliance requests events
- GETGet project level compliance requests
- POSTCreate compliance request(s)
- PATCHUpdate compliance request
- DELDelete a compliance request file
- POSTUpload a compliance request file
- GETGet project level compliance requests events
Consent Events
Data Systems
- DELDelete data system contact
- PATCHUpdate data system contact
- GETGet data system contacts
- POSTCreate data system contact
- DELDelete data system destination
- PATCHUpdate data system destination
- GETGet data system destinations
- POSTCreate data system destination
- DELDelete data system origin
- PATCHUpdate data system origin
- GETGet data system origins
- POSTCreate data system origin
- DELDelete data system processing activity
- PATCHUpdate data system processing activity
- GETGet data system processing activities
- POSTCreate data system processing activity
- DELDelete data system processing purpose
- PATCHUpdate data system processing purpose
- GETGet data system processing purposes
- POSTCreate data system processing purpose
- DELDelete data system relationship
- PATCHUpdate data system relationship
- GETGet data system relationships
- POSTCreate data system relationship
- DELDelete data system security measure
- PATCHUpdate data system security measure
- GETGet data system security measures
- POSTCreate data system security measure
- DELDelete data system
- PATCHUpdate data system
- GETGet data systems
- POSTCreate data system
- DELDelete data system data category
- PATCHUpdate data system data category
- GETGet data system data categories
- POSTCreate data system data category
Organizations
Emails
Languages
Metrics
Consent Types
Data Systems
Create data system
Creates a new data system.
POST
/
organizations
/
{organizationId}
/
data-systems
curl --request POST \
--url https://api.concord.tech/privacy-v1/organizations/{organizationId}/data-systems \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"crossBorder": false,
"retention": "P2Y",
"additionalNotes": "<string>",
"dataSystemTypeId": "custom",
"status": "active",
"dataSystemContacts": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemDestinations": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemOrigins": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemProcessingActivities": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemProcessingPurposes": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemRelationship": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dataSystemSecurityMeasures": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemDataCategories": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"projectIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateCreated": 123,
"dateUpdated": 123,
"organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organizationName": "<string>",
"name": "<string>",
"crossBorder": false,
"retention": "P2Y",
"additionalNotes": "<string>",
"status": "active",
"dataSystemContacts": [],
"dataSystemDestinations": [],
"dataSystemRelationship": {},
"dataSystemSecurityMeasures": [
"<any>"
],
"dataSystemOrigins": [],
"dataSystemProcessingActivities": [],
"dataSystemProcessingPurposes": [],
"dataSystemTypeId": "<string>",
"dataSystemType": {
"id": "<string>",
"name": "<string>",
"icon": "<string>"
},
"dataSystemDataCategories": [],
"icon": "<string>",
"projectIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
Authorizations
Path Parameters
Body
application/json
Response
201
application/json
Default Response
The response is of type object
.
curl --request POST \
--url https://api.concord.tech/privacy-v1/organizations/{organizationId}/data-systems \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"crossBorder": false,
"retention": "P2Y",
"additionalNotes": "<string>",
"dataSystemTypeId": "custom",
"status": "active",
"dataSystemContacts": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemDestinations": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemOrigins": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemProcessingActivities": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemProcessingPurposes": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemRelationship": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dataSystemSecurityMeasures": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataSystemDataCategories": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"projectIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateCreated": 123,
"dateUpdated": 123,
"organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organizationName": "<string>",
"name": "<string>",
"crossBorder": false,
"retention": "P2Y",
"additionalNotes": "<string>",
"status": "active",
"dataSystemContacts": [],
"dataSystemDestinations": [],
"dataSystemRelationship": {},
"dataSystemSecurityMeasures": [
"<any>"
],
"dataSystemOrigins": [],
"dataSystemProcessingActivities": [],
"dataSystemProcessingPurposes": [],
"dataSystemTypeId": "<string>",
"dataSystemType": {
"id": "<string>",
"name": "<string>",
"icon": "<string>"
},
"dataSystemDataCategories": [],
"icon": "<string>",
"projectIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}