Manage configurations for compliance list screening. These endpoints allow for the listing, creation, reading, updating, and deletion of configurations. The configurations are essential for defining the parameters of the screening process.
Create a new configuration for compliance list screening.
Configuration created successfully
Bad Request.
{- "workspaceId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "name": "Client configuration.",
- "configuration": {
- "matchingThreshold": "0.8",
- "lists": [
- {
- "technicalKey": "INFO4C_SL_1"
}
]
}
}
{- "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "name": "Client configuration.",
- "version": 1,
- "configuration": {
- "matchingThreshold": "0.8",
- "lists": [
- {
- "technicalKey": "INFO4C_SL_1"
}
]
}, - "createdAt": "2024-12-21T01:35:18Z",
- "modifiedAt": "2024-12-21T01:35:18Z",
- "createdBy": "76248934691294444"
}
Delete existing configuration for compliance list screening by id.
OK.
Bad Request.
{- "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "name": "Client configuration.",
- "version": 1,
- "configuration": {
- "matchingThreshold": "0.8",
- "lists": [
- {
- "technicalKey": "INFO4C_SL_1"
}
]
}, - "createdAt": "2024-12-21T01:35:18Z",
- "modifiedAt": "2024-12-21T01:35:18Z",
- "createdBy": "76248934691294444"
}
List all existing configurations for compliance list screening.
defaultConfiguration | boolean Default: null Limit search to configurations with provided default flag value. If left empty, all configurations will be returned. Example: defaultConfiguration=true |
limit | integer <int32> >= 1 Default: 500 Number of resources to be returned on the page. Example: limit=200 |
startAfter | string Pagination cursor which should be filled with nextStartAfter value provided in the previous page read response. Example: startAfter=NjI4ZGNkZjAzYjlkMjY4NjhlNjQxNDRm |
Successful operation
{- "startAfter": "5712566172571652",
- "nextStartAfter": "5712566172571652",
- "total": "67",
- "values": [
- {
- "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "name": "Client configuration.",
- "createdAt": "2024-12-21T01:35:18Z",
- "modifiedAt": "2024-12-21T01:35:18Z",
- "createdBy": "76248934691294444"
}
]
}
Read a specific version of a compliance list screening configuration by id and version number.
Successful operation.
{- "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "configurationId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "version": 1,
- "configuration": {
- "matchingThreshold": "0.8",
- "lists": [
- {
- "technicalKey": "INFO4C_SL_1"
}
]
}, - "createdAt": "2024-12-21T01:35:18Z",
- "createdBy": "76248934691294444"
}
Read existing configuration for compliance list screening by id.
Successful operation
{- "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "name": "Client configuration.",
- "version": 1,
- "configuration": {
- "matchingThreshold": "0.8",
- "lists": [
- {
- "technicalKey": "INFO4C_SL_1"
}
]
}, - "createdAt": "2024-12-21T01:35:18Z",
- "modifiedAt": "2024-12-21T01:35:18Z",
- "createdBy": "76248934691294444"
}
Update existing configuration for compliance list screening by id.
Configuration updated successful
Bad Request.
{- "name": "Client configuration.",
- "configuration": {
- "matchingThreshold": "0.8",
- "lists": [
- {
- "technicalKey": "INFO4C_SL_1"
}
]
}
}
{- "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
- "name": "Client configuration.",
- "version": 1,
- "configuration": {
- "matchingThreshold": "0.8",
- "lists": [
- {
- "technicalKey": "INFO4C_SL_1"
}
]
}, - "createdAt": "2024-12-21T01:35:18Z",
- "modifiedAt": "2024-12-21T01:35:18Z",
- "createdBy": "76248934691294444"
}