Lucinity API (3.3)
Download OpenAPI specification:Download
Welcome to the Lucinity API!
Lucinity is an API-first SaaS solution for AML: our platform ingests your data to make integration and data publishing simple and seamless. Our modular approach separates the functionality of the user interface centered around customer use cases, but the backend APIs are unified so the system can scale with your needs.
Bulk Ingestion
This endpoint allows you to submit 1000 entities or 32MB, whichever is reached first, of data in bulk to be ingested into the system asynchronously. It is designed to handle high-throughput data processing, ensuring that large datasets are efficiently processed and stored.
Initial Schema Validation:
Upon submission, the system performs an initial validation of the payload’s schema to ensure that the data is correctly formatted and adheres to the expected structure. If the payload fails this schema validation, the system will respond immediately with an error message detailing the issues found, and the request will be rejected.
Downstream Data Validation:
If the payload passes the initial schema validation, the system responds with a 200 OK status code, indicating successful ingestion of the request. The data then enters the processing pipeline for in-depth validation, which includes verifying required relationships and ensuring consistency with existing data in the system.
Errors that occur during this downstream processing—such as data relation validation errors—are not reflected in the initial API response. The status of the downstream processing will either be exposed via an API or a webhook, this implementation is yet to be determined.
Scalability and Data Integrity:
The endpoint is designed to be scalable and optimized for handling high-load scenarios while ensuring data integrity throughout the ingestion pipeline.
Note: This endpoint is still a work in progress and is subject to change.
Authorizations:
Request Body schema: application/jsonrequired
Array of objects (AccountActor) <= 1000 items List of account actors relationships to ingest. | |
Array of objects (Balance) <= 1000 items List of account balances. | |
Array of objects (Account) <= 1000 items List of accounts to ingest. | |
Array of objects (ActorSegmentationGroup) <= 1000 items List of actor to segmentation group assignments. | |
Array of Individual (object) or LegalEntity (object) (Actor) <= 1000 items List of actors to ingest. | |
Array of AnalysisCase (object) or FilingCase (object) (Case) <= 1000 items List of cases to ingest. | |
Array of objects (Communication) <= 1000 items List of communications to ingest. | |
Array of AmlV2Observation (object) or FraudObservation (object) or SanctionsObservation (object) or RuleObservation (object) or GenericObservation (object) (Observation) <= 1000 items List of observations to ingest. | |
Array of objects (Transaction) <= 1000 items List of transactions to ingest. |
Responses
Request samples
- Payload
{- "account_actors": [
- {
- "account_id": "568975e1-d16b-4e5a-9ecd-16cb105a6976",
- "actor_id": "568975e1-d16b-4e5a-9ecd-16cb105a6976",
- "actor_role": "OWNER",
- "as_of_date": "2024-01-01"
}
], - "account_balances": [
- {
- "account_id": "ACC0001",
- "currency": "USD",
- "current": 5000,
- "as_of_date": "2019-08-24",
- "available": 4000
}
], - "accounts": [
- {
- "account_type": "CREDIT_CARD",
- "id": "568975e1-d16b-4e5a-9ecd-16cb105a6976",
- "account_number": "string",
- "as_of_date": "2019-08-24",
- "bank_code": "10-00",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "iban": "GB43BARC20031828986436",
- "metadata": {
- "some_property": "some_value"
}, - "name": "Mez's account",
- "opened_date": "2019-08-24",
- "references": [
- {
- "id": "7777771-555-4e5a-9ecd-16cb105a6976",
- "system_name": "SystemName"
}
], - "data_source": "EXTERNAL_DATA_SOURCE",
- "status": "ACTIVE"
}
], - "actors": [
- {
- "id": "ACT0001",
- "type": "INDIVIDUAL",
- "addresses": [
- {
- "city": "Beverly Hills",
- "country": "USA",
- "postal_code": "90210",
- "state": "CA",
- "street": [
- "123 Maple Street",
- "Apt 4B"
], - "type": "BUSINESS_ADDRESS_INDIVIDUAL"
}
], - "as_of_date": "2019-08-24",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "customer_since": "2019-08-24",
- "data_source": "EXTERNAL_DATA_SOURCE",
- "date_of_birth": "2019-08-24",
- "domicile": "USA",
- "gender": "FEMALE",
- "government_ids": [
- {
- "expiration_date": "2019-08-24",
- "id": "123-45-6789",
- "issuing_authority": "US Government",
- "type": "SSN"
}
], - "metadata": {
- "some_property": "some_value"
}, - "name": "string",
- "nationality": "USA",
- "phones": [
- {
- "number": "123-456-7890",
- "type": "HOME",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}
}
], - "references": [
- {
- "id": "7777771-555-4e5a-9ecd-16cb105a6976",
- "system_name": "SystemName"
}
], - "status": "ACTIVE",
- "subtypes": [
- "CLIENT"
]
}
], - "actor_segmentation_groups": [
- {
- "actor_id": "2d5cbe51-3df5-4c1b-a9f9-9def502f4765",
- "group_id": "e96e67b6-6479-4217-b6ef-43c1811ef217"
}
], - "cases": [
- {
- "resolution": "Not Suspicious",
- "c__custom_string_property": "custom_value",
- "c__custom_number_property": 12345,
- "c__custom_object_property": {
- "key": "value"
}
}
], - "communications": [
- {
- "id": "6f83db65-50e0-4f7c-b42a-61115110a928",
- "type": "email",
- "content": "Please update your account information.",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "metadata": {
- "some_property": "some_value"
}, - "subject": "Urgent: Update Required"
}
], - "observations": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "transaction_ids": [
- "string"
], - "type": "ALERT_AML_V2",
- "actor_ids": [
- "string"
], - "behavior_description": "string",
- "behavior_id": "string",
- "title": "string",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "data_source": "EXTERNAL_DATA_SOURCE",
- "features": [
- {
- "group": "string",
- "items": [
- {
- "name": "string",
- "value": 0
}
]
}
], - "metadata": {
- "some_property": "some_value"
}, - "references": [
- {
- "id": "7777771-555-4e5a-9ecd-16cb105a6976",
- "system_name": "SystemName"
}
], - "rules": [
- {
- "id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "name": "string",
- "score": "string",
- "status": "string",
- "conditions": [
- {
- "id": "string",
- "matched": true
}
]
}
], - "score": "string",
- "version": "string"
}
], - "transactions": [
- {
- "account_id": "string",
- "account_owner_id": "string",
- "amount": {
- "currency": "USD",
- "value": 0
}, - "counterparty": {
- "name": "string",
- "account_info": {
- "account_number": "string",
- "bank_code": "string",
- "bank_name": "string",
- "bic": "string",
- "country": "USA",
- "iban": "string",
- "id": "string"
}, - "date_of_registration": "2019-08-24",
- "id": "string",
- "industry": {
- "type": "ISAT",
- "code": "010"
}, - "metadata": {
- "some_property": "some_value"
}, - "type": "LEGAL_ENTITY",
- "postal_addresses": [
- {
- "city": "Beverly Hills",
- "country": "USA",
- "postal_code": "90210",
- "state": "CA",
- "street": [
- "123 Maple Street",
- "Apt 4B"
], - "type": "BUSINESS_ADDRESS_INDIVIDUAL"
}
]
}, - "created_at": "2019-08-24T14:15:22Z",
- "direction": "INBOUND",
- "id": "string",
- "standardized_amount": 0,
- "status": "CANCELLED",
- "account_balance": 0,
- "channel": "ATM",
- "channel_location_id": "string",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "description": "string",
- "device": {
- "id": "string",
- "ip_address": "string"
}, - "metadata": {
- "some_property": "some_value"
}, - "method": "CARD",
- "purpose": "BILL_PAYMENT",
- "user_id": "string",
- "user_name": "string"
}
]
}Response samples
- 200
- 400
- 500
OK
Get Bulk Case Ingestion Status
Returns the latest ingestion status for a case. This endpoint is designed for use with the asynchronous ingestion via the Bulk API. Due to its asynchronous nature, not all entities may be processed when a case is being processed.
A case will only be fully processed after all referenced entities have been successfully ingested.
The status field, along with the missing_relations field, can be used to determine whether the case has been successfully processed.
If there are missing relations, additional ingestion may be required before the case is fully processed.
Lucinity guarantees that this data will be retained for 30 days, after which it will be subject to removal.
Authorizations:
path Parameters
| id required | string The ID of the case to fetch the ingestion status for. |
Responses
Response samples
- 200
- 404
{- "status": "COMPLETED",
- "missing_relations": {
- "actors": [
- "string"
], - "analysis_case": "string",
- "communications": [
- "string"
], - "observations": [
- "string"
], - "workflow": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "processed_at": "2019-08-24T14:15:22Z",
- "deferred_until": "2019-08-24T14:15:22Z",
- "attempts": 0
}Get Cases in Dead Letter Queue
Returns a list of cases that failed to be properly ingested through the bulk ingestion.
Authorizations:
query Parameters
| filter | string Filtering enables narrowing down API responses based on specific criteria. Range Filter:
Examples:
Single-Value Filter:
Examples:
|
| limit | number Example: limit=5 Sets the max number of items returned in the result set for this query |
| offset | number Example: offset=35 Sets the offset on the index into the list of items in the result set |
| sorting | string Sorting allows API responses to be ordered by one or more fields in a specified direction.
|
Responses
Response samples
- 200
[- {
- "id": "9e214a2f-0147-4e44-ab0e-eeaef9699edb",
- "case_id": "CLC2025010100000001",
- "created_at": "2019-12-24T18:02:16Z",
- "processed_at": "2019-12-24T18:02:16Z",
- "case": "{ ... }"
}
]Update account
Updates the fields in the newest Account that has the provided ID.
Notes:
- Updating an array is an additive insert operation, meaning that the new values are appended to the existing array.
- This endpoint is still a work in progress and is subject to change.
Authorizations:
path Parameters
| id required | string The Account ID. |
Request Body schema: application/jsonrequired
| account_number | string The identifier assigned by the financial institution to the account. |
| account_type | string (AccountType) Enum: "CREDIT_CARD" "CURRENT" "E_WALLET" "LOAN" "SAVINGS" "VIRTUAL" Specifies the type of account (e.g., savings, loan, e_wallet). Used to categorize and determine the nature of the account. |
| as_of_date | string <date> The date when this record became valid, in ISO 8601 format. |
| bank_code | string The unique identifier assigned to the bank or financial institution where the account resides. |
object (CustomData) The custom data property can be used to add data in a key, value format to the object. This can e.g. be used for display purposes. Maximum length of this property is 10000 characters. | |
| iban | string International Bank Account Number, used for global transactions to identify the account. |
object (Metadata) Metadata describing the object. This field is not intended to add additional information to the object, rather add information about the object's attributes. | |
| name | string A user-friendly name for the account, making it easier to identify in interfaces and reports. |
| opened_date | string <date> The date when the account was first activated, formatted in ISO 8601. |
Array of objects (Reference) <= 1000 items | |
| status | string (AccountStatus) Enum: "ACTIVE" "CLOSED" "LOCKED" The current operational state of the account (e.g., ACTIVE, CLOSED, LOCKED). |
Responses
Request samples
- Payload
{- "name": "John's account"
}Response samples
- 200
- 400
- 500
OK
Update actor
Updates the fields in the newest Actor that has the provided ID.
Notes:
- Updating an array is an additive insert operation, meaning that the new values are appended to the existing array.
- This endpoint is still a work in progress and is subject to change.
Authorizations:
path Parameters
| id required | string The Actor ID. |
Request Body schema: application/jsonrequired
Array of objects (PostalAddress) <= 1000 items A list of physical or legal addresses associated with the actor. | |
| as_of_date | string <date> The date when this record became valid, in ISO 8601 format. |
object (CustomData) The custom data property can be used to add data in a key, value format to the object. This can e.g. be used for display purposes. Maximum length of this property is 10000 characters. | |
| customer_since | string <date> Date when the actor first became a customer, in ISO 8601 format. |
| data_source | string An identifier that represents the system from which the record is originated. |
| date_of_birth | string <date> Date of birth of the actor, in ISO 8601 format. |
| date_of_registration | string <date> Date of registration of the actor, in ISO 8601 format |
| domicile | string The ISO 3166 alpha-3 country code represents the legal jurisdiction considered an actors's permanent home for legal purposes. |
Array of objects (EmailAddress) <= 1000 items A list of emails associated with the actor. | |
| gender | string (Gender) Enum: "FEMALE" "MALE" "OTHER" "UNSPECIFIED" The gender of the individual. |
Array of objects (GovernmentId) <= 1000 items Government id list for actor. | |
Array of objects (Industry) <= 1000 items List of industry classifications in which the legal entity operates in. | |
| legal_structure | string (LegalStructure) Enum: "COMPANY_PRIVATE" "COMPANY_PUBLIC" "GOVERNMENT" "HOLDING" "NONPROFIT" "ORGANIZATION" "OTHER" "PARTNERSHIP_GENERAL" "PARTNERSHIP_LIMITED" "SOLE_PROPRIETORSHIP" "SUBSIDIARY" "TRUST" Legal structure or form of the legal entity actor
|
object (Metadata) Metadata describing the object. This field is not intended to add additional information to the object, rather add information about the object's attributes. | |
| name | string Name of individual or company. |
| nationality | string The ISO 3166 alpha-3 country code representing the nation-state in which the actor has a legal relationship with. |
Array of objects (Phone) <= 1000 items A list of phone numbers associated with the actor. | |
Array of objects (Reference) <= 1000 items List of references to an external system. | |
Array of objects (Link) <= 1000 items Links to external resources or objects related to the legal entity. | |
| status | string (ActorStatus) Enum: "ACTIVE" "TERMINATED" Enumerated values for the status of the actor. |
| subtypes | Array of strings (ActorSubType) <= 1000 items Items Enum: "CLIENT" "CPSP" "CUSTOMER" "EMPLOYEE" "MERCHANT" "PRINCIPAL" "SUB_CLIENT" Array of subtypes of actor. |
Responses
Request samples
- Payload
{- "status": "TERMINATED"
}Response samples
- 200
- 400
- 500
OK
Update case
Updates the fields in the case that has the provided ID. Notes:
- Updating an array is an additive insert operation, meaning that the new values are appended to the existing array.
- This endpoint is still a work in progress and is subject to change.
Authorizations:
path Parameters
| id required | string The Case ID. |
Request Body schema: application/jsonrequired
Resolution (string) or Resolution (number) or Resolution (integer) or Resolution (boolean) or Resolution (object) or Array of Resolution (arrays) (Resolution) Describes the reason behind a case closure. The content and structure of this field are flexible and can vary depending on the context. It is defined through the Custom Properties, which allows for dynamic extension and customization based on specific business needs. | |
additional property | string or number or integer or boolean or object or Array of arrays Custom properties whose keys must start with the prefix |
Responses
Request samples
- Payload
{- "resolution": "Not Suspicious",
- "c__custom_string_property": "custom_value",
- "c__custom_number_property": 12345,
- "c__custom_object_property": {
- "key": "value"
}
}Response samples
- 200
- 400
- 500
OK
Add an actor to a case
Creates a new actor entity and assigns it to the specified case.
Authorizations:
path Parameters
| id required | string The ID of the case to add the actor to. |
header Parameters
| lucinity-rfd-id | string <uuid> The rfd_id used to retrieve information about the request. Include it to complete an rfd item. |
Request Body schema: application/jsonrequired
required | Individual (object) or LegalEntity (object) (Actor) |
object (CustomData) The custom data property can be used to add data in a key, value format to the object. This can e.g. be used for display purposes. Maximum length of this property is 10000 characters. | |
| type | string (CaseActorType) Enum: "CONNECTION" "FOCAL" The role that the actor has in the case. Defaults to |
Responses
Request samples
- Payload
{- "type": "CONNECTION",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "actor": {
- "id": "ACT0001",
- "type": "INDIVIDUAL",
- "addresses": [
- {
- "city": "Beverly Hills",
- "country": "USA",
- "postal_code": "90210",
- "state": "CA",
- "street": [
- "123 Maple Street",
- "Apt 4B"
], - "type": "BUSINESS_ADDRESS_INDIVIDUAL"
}
], - "as_of_date": "2019-08-24",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "customer_since": "2019-08-24",
- "data_source": "EXTERNAL_DATA_SOURCE",
- "date_of_birth": "2019-08-24",
- "domicile": "USA",
- "gender": "FEMALE",
- "government_ids": [
- {
- "expiration_date": "2019-08-24",
- "id": "123-45-6789",
- "issuing_authority": "US Government",
- "type": "SSN"
}
], - "metadata": {
- "some_property": "some_value"
}, - "name": "string",
- "nationality": "USA",
- "phones": [
- {
- "number": "123-456-7890",
- "type": "HOME",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}
}
], - "references": [
- {
- "id": "7777771-555-4e5a-9ecd-16cb105a6976",
- "system_name": "SystemName"
}
], - "status": "ACTIVE",
- "subtypes": [
- "CLIENT"
]
}
}Update multiple case actors
Updates multple case actor relationships in a case. Maximum 1000 actors in each request.
Authorizations:
path Parameters
| id required | string The ID of the case the actors belong to. |
Request Body schema: application/jsonrequired
| actor_id | string The ID of the actor. |
object |
Responses
Request samples
- Payload
[- {
- "actor_id": "actor_id_123",
- "properties": {
- "c__custom_string_property": "custom_value",
- "c__custom_number_property": 12345,
- "c__custom_object_property": {
- "key": "value"
}
}
}
]Update a case actor
Updates the fields in the case actor that has the provided ID.
Authorizations:
path Parameters
| actor_id required | string The ID of the actor |
| case_id required | string The ID of the case |
Request Body schema: application/jsonrequired
additional property | string or number or integer or boolean or object or Array of arrays or null (CustomProperties) Custom properties whose keys must start with the prefix |
One of string Custom properties whose keys must start with the prefix | |
Responses
Request samples
- Payload
{- "c__custom_string_property": "custom_value",
- "c__custom_number_property": 12345,
- "c__custom_object_property": {
- "key": "value"
}
}Add a communication to a case
Creates a new communication entity and assigns it to the case.
Authorizations:
path Parameters
| id required | string The case_id. |
header Parameters
| lucinity-rfd-id | string <uuid> The rfd_id used to retrieve information about the request. Include it to complete the rfd item. |
Request Body schema: application/jsonrequired
| id required | string <uuid> The unique identifier for the communication. |
| receiver_id required | string Identifies the receiver uniquely in the system where the communications originates. For example if this is an email it could be the email address, if it is from a messaging system it could be the user handle in that system. Alternatively can be provided as Actor/Entity id, as provided in the Actor endpoint, If so then metadata should be used. metadata.receiver_identifiable_as_actor=true. |
| sender_id required | string Identifies the sender uniquely in the system where the communications originates. For example if this is an email it could be the email address. If it is from a messaging system it could be the user handle in that system. Alternatively can be provided as Actor/Entity id, as provided in the Actor endpoint. If so then metadata should be used. metadata.sender_identifiable_as_actor=true. |
| subject required | string The subject title of the message in the communication. |
| type required | string The type of communication (e.g., email, SMS). |
| content | string The content of the communication. |
object (CustomData) The custom data property can be used to add data in a key, value format to the object. This can e.g. be used for display purposes. Maximum length of this property is 10000 characters. | |
object (Metadata) Metadata describing the communication. This field is not intended to add additional information to the communication, rather add information about the communication's attributes. |
Responses
Request samples
- Payload
{- "id": "6f83db65-50e0-4f7c-b42a-61115110a928",
- "type": "email",
- "content": "Please update your account information.",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "metadata": {
- "some_property": "some_value"
}, - "subject": "Urgent: Update Required"
}Upload a file to a case
Uploads a file related to a specific case.
File size may not exceed 50MB.
Valid file formats are:
- Images (JPG, PNG, GIF)
- Docs (PDF, DOC, DOCX, EXCEL, JSON, TXT, CSV)
Authorizations:
path Parameters
| id required | string The case_id |
header Parameters
| lucinity-rfd-id | string <uuid> The rfd_id used to retrieve information about the request. Include it to complete the rfd item. |
Request Body schema: multipart/form-datarequired
| file | string <binary> |
Responses
Update observation
Updates the fields in the newest Observation that has the provided ID. Notes:
- Updating an array is an additive insert operation, meaning that the new values are appended to the existing array.
- This endpoint is still a work in progress and is subject to change.
Authorizations:
path Parameters
| id required | string The Observation ID. |
Request Body schema: application/jsonrequired
| actor_ids | Array of strings <= 1000 items The Actor IDs which this observations applies to. |
| behavior_description | string A detailed description of the behavior associated with the observation. |
| behavior_id | string A unique identifier used to classify the risk or concern associated with the observation. |
| created_at | string <date-time> Timestamp at which the observation was created, in ISO 8601 format. |
object (CustomData) The custom data property can be used to add data in a key, value format to the object. This can e.g. be used for display purposes. Maximum length of this property is 10000 characters. | |
| data_source | string An identifier that represents the system from which the record is originated. |
Array of objects (ObservationFeatures) List of features and values contributing to the observation. | |
object (Metadata) Metadata describing the object. This field is not intended to add additional information to the object, rather add information about the object's attributes. | |
Array of objects (Reference) <= 1000 items | |
Array of objects (Rule) <= 1000 items List of objects representing rules that were triggered. | |
| score | string A score indicator for the result of this rule applying. This could be a numeric value or it could be some qualifier such as 'APPROVE' or 'REJECT', indicating a suggested operation based on this rule applying. |
| title | string Summarizes the primary risk or concern identified in the observation. |
| transaction_ids | Array of strings <= 10000 items List of transaction ids which apply in this observation. |
| version | string Optional version for the model, function or rule that was in effect when the Observation was created. Having this version can help explain why this Observation was raised. It can be a number, an arbitray string or an record identifier for specific revision. |
Responses
Request samples
- Payload
{- "created_at": "2019-08-24T14:15:22Z",
- "actor_ids": [
- "string"
], - "transaction_ids": [
- "string"
], - "score": "string",
- "behavior_id": "string",
- "title": "Transfer to High-Risk Country",
- "behavior_description": "string",
- "data_source": "EXTERNAL_DATA_SOURCE",
- "features": [
- {
- "group": "string",
- "items": [
- {
- "name": "string",
- "value": 0
}
]
}
], - "references": [
- {
- "id": "7777771-555-4e5a-9ecd-16cb105a6976",
- "system_name": "SystemName"
}
], - "version": "string",
- "rules": [
- {
- "id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}, - "name": "string",
- "score": "string",
- "status": "string",
- "conditions": [
- {
- "id": "string",
- "matched": true
}
]
}
], - "metadata": {
- "some_property": "some_value"
}, - "custom_data": {
- "someProperty": "some value",
- "otherProperty": "other value"
}
}Response samples
- 200
- 400
- 500
OK
Update transaction
Updates the fields in the newest Transaction that has the provided ID. Notes:
- Updating an array is an additive insert operation, meaning that the new values are appended to the existing array.
- This endpoint is still a work in progress and is subject to change.
Authorizations:
path Parameters
| id required | string The transaction ID. |
Request Body schema: application/jsonrequired
| account_balance | number The current, settled balance of the account in the currency of the account. |
| account_id | string Primary identifier of the account. |
| account_owner_id | string A unique identifier representing the actor who is the owner of the account, expected to be a valid actor_id. |
object (Amount) Amount and currency code of the transaction that occured. | |
| channel | string (Channel) Enum: "ATM" "BRANCH" "ONLINE" "POS" "UNKNOWN" The type of channel that was used to initiate the transaction. If this property is not provided it will default to
|
| channel_location_id | string The unique identifier for the channel location associated with the transaction. Has to match a location code ingested through /channel_locations. |
CounterpartyLegalEntity (object) or CounterpartyIndividual (object) or AccountInfo (object) or NamedEntity (object) or Empty (object) Counterparty represents the creditor or debtor involved in the transaction and can be one of the following:
| |
| created_at | string <date-time> The timestamp of when the transaction occurred, in ISO 8601 format. |
object (CustomData) The custom data property can be used to add data in a key, value format to the object. This can e.g. be used for display purposes. Maximum length of this property is 10000 characters. | |
| description | string Description of the transaction. |
object (Device) Device section contains information on the device which the transaction was performed on. | |
| direction | string (Direction) Enum: "INBOUND" "OUTBOUND" The direction of a transaction is |
object (Metadata) Metadata describing the object. This field is not intended to add additional information to the object, rather add information about the object's attributes.
Reserved Metadata Keywords: -
| |
| method | string (Method) Enum: "CARD" "CASH" "CHECK" "VIRTUAL" "WIRE_TRANSFER" Method of the transaction.
Either |
| purpose | string (Purpose) Enum: "BILL_PAYMENT" "CHARGEBACK" "CLOSING" "CORRECTION" "FEE" "FUNDING" "INTEREST_PAYMENT" "INTRA_ACTOR" "PAY_IN" "PAY_OUT" "PRINCIPAL_PAYMENT" "REFUND" "REVERSE" "SETTLEMENT" Purpose of the transaction.
|
| standardized_amount | number Value of the transaction in the default currency configured in the Lucinity platform. |
| status | string (TransactionStatus) Enum: "CANCELLED" "COMPLETED" "FAILED" "PENDING" Status or condition of the transaction. Only
|
| user_id | string User id of the entity performing the transaction. |
| user_name | string User name of the entity performing the transaction. |
Responses
Request samples
- Payload
{- "amount": {
- "currency": "USD"
}
}Response samples
- 200
- 400
- 500
OK
Add schema mapping for custom_data
This endpoint is for adding a schema mapping for a custom_data property on an entity. The schema mapping describes the property structure and can be as simple as a string or number or as complex as an object or array of objects.
The schema is described using JSON Schema and will be validated by the endpoint. However there are certain keywords from Json schema that will not be supported and will generate a 400 validation error.
The following elements are not supported:
- $ref to external schemas - if $ref is used it must start with '#/'
- allOf, anyOf, oneOf - union types are not supported
- additionalProperties - dynamic properties are not allowed
The entities containing custom_data:
| Entity | Will apply to the custom_data block on |
|---|---|
| account | Account object |
| actor | Actor object |
| actor.phones | Phone object in the phones array of Actor object |
| case | Case object |
| case.actors | CaseActor object in actors array of Case object |
| transaction | Transaction object |
| observation | Observation object |
| observation.rules | Rule object in rules array of Observation object |
Example of schema payload:
To support the following custom_data property my_custom_property in actor object:
{
...
"custom_data": {
"my_custom_property": {
"nestedProperty": "value",
"nestedArrayProperty": ["value1", "value2"]
}
}
...
}
The following json schema could be provided for the custom_data property:
POST /custom_data_schema_mapping/actor/my_custom_property
{
"schema": {
"type": "object",
"properties": {
"nestedProperty": {
"type": "string"
},
"nestedArrayProperty": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["nestedProperty", "nestedArrayProperty"]
}
}
Authorizations:
path Parameters
| entity required | string Example: case The entity containing the custom_data block. |
| property required | string Example: investigation_origin The custom_data property name. |
Request Body schema: application/jsonrequired
required | object JSON Schema definition for the custom data. | ||
| |||
Responses
Request samples
- Payload
{- "schema": { }
}Response samples
- 400
{- "errors": [
- "string"
]
}Get schema mapping for custom_data property
This endpoint will fetch the schema mapping for a custom_data property on an entity if it has been defined.
Authorizations:
path Parameters
| entity required | string Example: case The entity containing the custom_data block. |
| property required | string Example: investigation_origin The custom_data property name. |
Responses
Response samples
- 200
- 400
- 404
{- "property": "string",
- "schema": { },
- "created_at": "2019-08-24T14:15:22Z",
- "created_by": "string"
}Delete schema mapping for custom_data property
This endpoint will delete the schema mapping for a custom_data property on an entity if it has been defined.
Authorizations:
path Parameters
| entity required | string Example: case The entity containing the custom_data block. |
| property required | string Example: investigation_origin The custom_data property name. |
Responses
Response samples
- 400
- 404
{- "errors": [
- "string"
]
}Get schema mapping for all custom data properties on an entity
This endpoint will fetch the schema mapping for all custom_data property on an entity that have been defined.
Authorizations:
path Parameters
| entity required | string Example: case The entity containing the custom_data block. |
Responses
Response samples
- 200
- 400
- 404
{- "entity": "string",
- "properties": [
- {
- "property": "string",
- "schema": { },
- "created_at": "2019-08-24T14:15:22Z",
- "created_by": "string"
}
]
}Retrieves a list of custom properties
This endpoint will fetch the custom properties that have been defined. The custom properties are used to store additional information about the entity.
Currently supported entities are:
casecase.actor
Authorizations:
query Parameters
| filter.entity | string Example: filter.entity=case The entity containing the custom property. |
| filter.name | string Example: filter.name=c__actor_decision The custom property name. |
| limit | number Example: limit=5 Sets the max number of items returned in the result set for this query |
| offset | number Example: offset=35 Sets the offset on the index into the list of items in the result set |
Responses
Response samples
- 200
[- {
- "entity": "case",
- "name": "c__actor_decision",
- "schema": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "value": {
- "type": "string"
}, - "id": {
- "type": "string"
}
}
}
}
]The Request for Data (RFD) feature enables analysts to request additional information from internal systems to support case investigations. This capability streamlines the process of gathering supplementary data, ensuring analysts have what they need to carry out effective reviews and meet regulatory compliance requirements.
RFD flows are highly flexible and can be customized to match your organization’s internal workflows.
Example RFD Flow
- An analyst working on a case identifies the need for additional information from an internal system.
- The analyst uses the RFD feature to request the necessary data through a form created and designed in collaboration with Lucinity.
- Lucinity creates the RFD request and sends a notification a webhook notification (
request_for_data.created). - Your internal system receives the RFD request via webhook and processes it according to the defined schema.
- Your internal system sends the requested data back to Lucinity, and completes the RFD request by providing the
lucinity-rfd-idheader with the request that completeded the RFD.- If completeing the RFD is not possible, the internal system can send a request to the
/request_for_data/{id}/rejectand provide a reason for the rejection.
- If completeing the RFD is not possible, the internal system can send a request to the
- The case has been updated with the received data, allowing the analyst to continue their investigation with the additional information.
Additional Notes
- Each RFD is linked to a single entity (e.g., a document, actor, or other case items).
- If a request needs to be made for multiple entities, a separate RFD request should be created for each.
Get RFD by Id
Retrieves an RFD object using its unique Id.
Authorizations:
path Parameters
| id required | string <uuid> The unique identifier for the RFD. |
Responses
Response samples
- 200
{- "type": "string",
- "case_id": "c74269e5-1f97-4e20-9164-ffbe3494d8d6",
- "status": "COMPLETED",
- "request": {
- "actor_id": "ACT0001"
}, - "created_at": "2019-08-24T14:15:22Z"
}Reject an RFD request.
Cancels the RFD flow and marks the RFD request as rejected. After calling this endpoint, the SLA will be disabled and the case will eventually revert to its previous state before the RFD process was initiated. Note that if you try to reject a RFD that has already been comlpleted you will get a 400 error.
Authorizations:
path Parameters
| id required | string <uuid> The unique identifier of the RFD. |
Request Body schema: application/jsonrequired
| reason | string Reason for rejection. |
Responses
Request samples
- Payload
{- "reason": "Actor not found."
}Create or update an RFD schema.
Defines or updates the schema used for RFD validation.
Since RFDs have a dynamic schema, this endpoint allows submitting a JSON Schema-compliant format. The schema is used by the RFD endpoints to validate incoming payloads as they pass through the system.
To update an existing schema, the entire payload must be resubmitted, including both unchanged values and any modifications.
Authorizations:
Request Body schema: application/jsonrequired
required | object The schema settings used to validate the request payloads in the RFD service. Must be in JSON schema format. |
| type required | string <^[a-zA-Z0-9_-]+$> A predefined identifier specifying the type of schema to be used in different flows in the RFD service.
This type should match the type in the |
| created_at | string <date-time> The time and date when the schema was created in ISO 8601. |
Responses
Request samples
- Payload
{- "type": "ACTOR",
- "schema": {
- "type": "object",
- "properties": {
- "actor_id": {
- "type": "string"
}, - "required": [
- "actor_id"
]
}
}, - "created_at": "2019-08-24T14:15:22Z"
}Retrieve a list of RFD schems
Fetches a list of all RFD schemas.
Authorizations:
query Parameters
| limit | number Example: limit=5 Sets the max number of items returned in the result set for this query |
| offset | number Example: offset=35 Sets the offset on the index into the list of items in the result set |
Responses
Response samples
- 200
[- {
- "type": "ACTOR",
- "schema": {
- "type": "object",
- "properties": {
- "actor_id": {
- "type": "string"
}, - "required": [
- "actor_id"
]
}
}, - "created_at": "2019-08-24T14:15:22Z"
}
]Retrieve RFD schema by type
Fetches a specific request for data schema by type.
Authorizations:
path Parameters
| type required | string |
Responses
Response samples
- 200
{- "type": "ACTOR",
- "schema": {
- "type": "object",
- "properties": {
- "actor_id": {
- "type": "string"
}, - "required": [
- "actor_id"
]
}
}, - "created_at": "2019-08-24T14:15:22Z"
}