Audit
state can be 'managed', 'ignored' or 'detected'
Successful Response
Validation Error
POST /api/audit/conflict-information/set-state HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 28
{
"id": "text",
"state": "text"
}{
"response": true
}state can be 'managed', 'ignored' or 'detected'
Successful Response
Validation Error
POST /api/audit/duplicated-information/set-state HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 28
{
"id": "text",
"state": "text"
}{
"response": true
}list all conflicts
2000Successful Response
Validation Error
POST /api/audit/conflict-information HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 77
{
"query": "text",
"document_name": "text",
"limit": 200,
"offset": 0,
"state": "text"
}{
"response": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
]
}list all duplicates
2000Successful Response
Validation Error
POST /api/audit/duplicated-information HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 77
{
"query": "text",
"document_name": "text",
"limit": 200,
"offset": 0,
"state": "text"
}{
"response": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
]
}count duplicates and conflicts per document
Successful Response
POST /api/audit/document-ids-to-manage HTTP/1.1
Host:
Accept: */*
Successful Response
{
"response": {
"ANY_ADDITIONAL_PROPERTY": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}
}retrieve all conflicts and duplicates associated to the document
Successful Response
Validation Error
POST /api/audit/get-anomalies-for-document HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"id": "text"
}{
"response": {
"conflicts": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
],
"duplicated": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
]
}
}count conflict anomalies by date
Successful Response
Validation Error
POST /api/audit/count-conflict-by-date HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 54
{
"begin_date": "text",
"end_date": "text",
"state": "text"
}{
"response": {
"ANY_ADDITIONAL_PROPERTY": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}
}count duplicate anomalies by date
Successful Response
Validation Error
POST /api/audit/count-duplicate-by-date HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 54
{
"begin_date": "text",
"end_date": "text",
"state": "text"
}{
"response": {
"ANY_ADDITIONAL_PROPERTY": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}
}retrieve all conflicts anomalies by subject
2000Successful Response
Validation Error
POST /api/audit/get-conflict-information-by-subject HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"subject": "text",
"limit": 200,
"offset": 0
}{
"response": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
]
}True if the document is already audited, else False
Successful Response
Validation Error
POST /api/audit/document-is-analyzed HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"id": "text"
}{
"response": true
}retrieve all duplicates anomalies by subject
2000Successful Response
Validation Error
POST /api/audit/get-duplicate-information-by-subject HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"subject": "text",
"limit": 200,
"offset": 0
}{
"response": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
]
}Return a list of document id pairs in conflict information
2000Successful Response
Validation Error
POST /api/audit/get-conflict-document-pair HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 47
{
"limit": 200,
"offset": 0,
"document_name": "text"
}[]Return a list of document id pairs in duplicate information
2000Successful Response
Validation Error
POST /api/audit/get-duplicate-document-pair HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 47
{
"limit": 200,
"offset": 0,
"document_name": "text"
}[]Return a list of conflicts by given document id pair
2000[]Successful Response
Validation Error
POST /api/audit/get-conflicts-by-document-id-pair HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 48
{
"limit": 200,
"offset": 0,
"document_ids": [
"text"
]
}{
"response": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
]
}Return a list of duplicates by given document id pair
2000[]Successful Response
Validation Error
POST /api/audit/get-duplicates-by-document-id-pair HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 48
{
"limit": 200,
"offset": 0,
"document_ids": [
"text"
]
}{
"response": [
{
"id": "text",
"subject": "text",
"state": "DETECTED",
"documents": [
{
"doc_id": "text",
"information_involved": "text"
}
],
"explanation": "text"
}
]
}Return a list of missing information
2000Successful Response
Validation Error
POST /api/audit/list-missing-information HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 77
{
"query": "text",
"document_name": "text",
"limit": 200,
"offset": 0,
"state": "text"
}[]Delete missing information from database
Successful Response
Validation Error
POST /api/audit/delete-missing-information HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"id": "text"
}{
"response": true
}Last updated