SwiftDil API 1.0
Updated 2021-01-20
API endpoint
https://api.swiftdil.com (live)
https://sandbox.swiftdil.com (sandbox)
Examples in this documentation are generated using Postman.
This document is a detailed reference for our REST API.
The SwiftDil API offers a framework and functionality for businesses that want to automate their Know Your Customer (KYC) and Anti-Money Laundering (AML) processes. The API is built using REST endpoints - it has predictable, resource-oriented URLs, and uses HTTP response codes to indicate API errors. JSON is returned by all API responses, including errors.
As a general guideline, if a property has an empty or null value, we drop it from the JSON unless there’s a strong semantic reason for its existence.
We’ve designed our documentation to be easy to use. It is grouped by feature sets and offers practical examples.
Try Now
Try the SwiftDil API in seconds. Create your first customer, perform screening checks, and more by following the steps below.
Access your test token
To make our API as explorable as possible, accounts have sandbox and live API keys. Just use the appropriate key along with the corresponding SwiftDil domain to perform a live call to api.swiftdil.com, or test call to sandbox.swiftdil.com. Requests made to the sandbox environment will not incur a cost.
Register an account with us to immediately access your live and sandbox token from your Dashboard.
Create customer
$ curl https://api.swiftdil.com/v1/customers \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X POST
-d '{
"type" : "INDIVIDUAL",
"email" : "john.doe@example.com",
"first_name" : "John",
"last_name" : "Doe",
"gender" : "MALE",
"dob" : "1980-01-01"
}'
As a first step, a customer must be created to facilitate all further checks. Let’s create the customer John Doe using your token. Copy the curl request on the right, replace test_api_token with your given test token, and run it in your terminal to create a customer.
You should see the created customer object in the response.
Note down the id attribute of the customer as it is required for the next step.
Screen customer
$ curl https://api.swiftdil.com/v1/customers/{customer_id}/screenings \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X POST
-d '[
"WATCHLIST",
"PEP"
]'
Now that we created a customer, you are ready to run a screening check against SwiftDil’s global watchlist and Politically Exposed Persons (PEP) database.
Copy the curl request on the right, replace customer_id with the customer id generated previously, and run it in your terminal to start screening.
You should see the created screening object in the response. In this case, the check has completed and the result is a clear.
Please note that this is a result based on a simulated run, as screenings are not actually run against real-life databases in the sandbox environment.
Topics
Authentication and headers
Example Request
curl https://api.swiftdil.com/v1/oauth2/token \
-u "client_id:secret"
To make a REST API call, you must include request headers including the Authorization header with an OAuth 2.0 access token.
To get an access token, you must first create an account, then SwiftDil will generate a set of OAuth client_id and secret keys for your app for both the sandbox and live environments. Then, you pass the client_id:secret credentials in the Authorization header to acquire an access token.
The authorisation server issues an access token in exchange for your client ID and secret credentials. You use the access token for authentication when you make REST API requests.
You can manage your credentials in the Dashboard. All API requests must be made over HTTPS. Any requests made over HTTP will fail.
Request Header
| Request Header | Description |
|---|---|
Authorizationrequired |
To request an access token, send your client_id and secret values as the HTTP basic authentication credentials. If you use cURL, specify -u “*client_id:secret*”. When you call APIs, send the value as the OAuth 2.0 access token with the authentication type set as Bearer. For example: Authorization: Bearer |
Errors
SwiftDil uses standard HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that failed given the information provided (e.g. a required parameter was omitted, etc.), and codes in the 5xx range indicate an error with SwiftDil’s servers.
HTTP status code summary
| Response code | Meaning |
|---|---|
200OK |
Everything worked as expected. |
201Created |
New resource created. |
204No Content |
Resource is deleted. |
400Bad Request |
Request has missing arguments or is malformed. |
401Unauthorized |
Invalid authorisation credentials. |
403Forbidden |
Request is authenticated but has insufficient permissions. |
404Not Found |
The endpoint requested does not exist. |
405Not Found |
Method not found. |
409Conflict |
The request conflicts with another request (perhaps due to using the same idempotent key). |
410Gone |
Resource no longer available. |
500Server Error |
Something is wrong on our end. |
503Server Unavailable |
Service is unavailable (perhaps due to a planned upgrade). |
Error Object
Example Error Object
{
"id": "7e2e3fe2-4ae8-4bff-a1b5-d0b84a964e02",
"type": "invalid_request",
"message": "Error message",
"errors": [
{
"field": "nationality",
"type": "invalid_country_code",
"message": "No country found for specified code"
}
]
}
| Response code | Meaning |
|---|---|
idstring |
A unique identifier for the error. This can be used as a reference when you contact our support team. |
typestring |
The type of error returned. |
messagestring |
A user-friendly message providing more details about the error. |
errorshash |
The list of attributes which have errors associated with them. Only applies to validation errors. This will include the validation code. |
Error Types
| Response code | Meaning |
|---|---|
invalid_request |
Request has malformed or missing fields. |
invalid_sorting_request |
No property “{sort_term}” found. |
invalid_patch_request |
Specified patch has invalid path or operation. |
malformed_content |
Content of the request does not conform to specification. |
invalid_operation |
Operation is not supported. {reason}. |
invalid_token |
Provided token is invalid or expired. |
access_denied |
Access to this resource is denied. |
insufficient_permissions |
You don’t have sufficient permissions to perform this action. |
resource_not_found |
Cannot find a resource {resource}. |
duplicate |
Such resource already exists. |
conflict |
Resource cannot be modified because of conflicting request. |
resource_deleted |
The requested resource was deleted. |
internal_error |
Operation execution was failed. |
not_implemented |
Requested operation isn’t implemented yet. |
service_maintenance |
A service is under planned maintenance. |
Validation Error Codes
The following validation error codes only apply to invalid_request errors.
| Response code | Meaning |
|---|---|
mandatory_field_missing |
This field is required. |
incorrect_email_format |
The format of the email is incorrect. |
past_date_expected |
The date value for this field is expected to be in the past. |
date_out_of_bounds |
1. Date is expected to be earlier than {x}. 2. Date is expected to be later than {x}. 3. Date is expected to be between {x} and {y}. |
incorrect_phone_number_format |
Phone number does not meet international format. |
invalid_country_code |
No country found for specified code. |
invalid_pattern |
1. For search terms: %, ^,* and @ are not allowed. 2. For incorporation number: Only numbers, digits, _ and - are allowed. |
wrong_value_length |
Size must be between {x} and {y}. |
invalid_value |
The value provided does not conform to specification. |
invalid_date_format |
Invalid date format or value, expected YYYY-MM-DD. |
invalid_mrz_format |
The format of MRZ line is invalid, only A-Z, 0-9 and < are expected. |
invalid_constant_value |
The value provided does not conform to specification. |
Pagination
Example Request
GET https://api.swiftdil.com/v1/customers?page=0&size=2&sort=last_name,DESC
All top-level API resources have support for bulk fetches via “list” API methods. For instance you can list customers and documents. These requests will be paginated to 20 items by default.
You can specify further pages using the page parameter and specify page size. Other parameters include the sort_by, which will expect a string based attribute name, and sort_how, which can be asc or desc.
Request arguments
| Parameter | Description |
|---|---|
pageoptional |
Specifies the page number to retrieve. Value must be between 0 and 100. |
sizeoptional |
Indicates how many records each page should contain. Value must be greater than or equal to 1. |
sortoptional |
Sorts the records in the response by the specified attribute. Optionally, you can specify whether the records are returned in ascending or descending order. |
Patch object
A JSON patch object can be used across several of our endpoints to apply partial updates to resources.
Attributes
| Parameter | Description |
|---|---|
opstring |
The operation to perform. Valid values are: add,remove,replace,move,copy and test. |
pathstring |
A JSON pointer that references a location in the target document where the operation is performed. |
valuesee description |
The value to apply based on the operation. The remove operation does not require a value. Possible types: number, integer, string, boolean, null, array, object. |
fromstring |
A JSON pointer that references the location in the target document from which to move the value. Required for the move operation. |
Resources
Customers
A customer represents the individual or company the various checks are being performed on. To initiate a check, a customer must be created first. The API allows you to create, retrieve, update, and delete your customers. You can retrieve specific customers as well as a list of all your customers.
A customer must first be created to facilitate all further checks. Once a customer is created, we will automatically generate a risk profile.
The customer object
Example Response
{
"id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"created_at": "2017-01-17T23:46:26Z",
"updated_at": "2017-01-17T23:46:26Z",
"type" : "INDIVIDUAL",
"title" : "MR",
"first_name" : "John",
"middle_name": "A.",
"last_name" : "Doe",
"email" : "john.doe@example.com",
"dob" : "1980-01-01",
"gender": "MALE",
"addresses" : [
{
"type": "PRIMARY",
"property_name": "Custom House",
"line": "Main Street",
"extra_line": "City Square",
"city": "Aldgate",
"state_or_province": "London",
"postal_code": "E99 0ZZ",
"country": "GBR",
"from_date": "2010-01-01"
}
]
}
Attributes
| Parameter | Description |
|---|---|
idstring Individual and Company |
The unique identifier for the customer. |
created_atIndividual and Company datetime |
The date and time when the customer was created. |
updated_atIndividual and Company datetime |
The date and time when the customer was updated. |
typeIndividual and Company string |
The customer type. Valid values are INDIVIDUALorCOMPANY. |
joined_atIndividual and Company datetime |
The date and time when the customer was registered with you. This is relevant for users that migrate existing customers. |
emailIndividual and Company string |
The customer’s email address. |
telephoneIndividual and Company string |
The customer’s telephone number. |
mobileIndividual and Company string |
The customer’s mobile number. |
addressesIndividual and Company list address |
A list of addresses associated with customer. |
titleIndividual string |
The customer’s title. Valid values are MR, MRS, MISS, or MS. |
first_nameIndividual string |
The customer’s first name. |
middle_nameIndividual string |
The customer’s middle name. |
last_nameIndividual string |
The customer’s last name. |
maiden_nameIndividual string |
The customer’s maiden name. |
alternative_first_nameIndividual string |
The customer’s alternative or new first name. |
alternative_middle_nameIndividual string |
The customer's alternative or new middle name. |
alternative_last_nameIndividual string |
The customer's alternative or new last name. |
dobIndividual date |
The customer’s date of birth. The format is YYYY-MM-DD. |
genderIndividual string |
The customer’s gender. Valid values are MALE, FEMALE, or OTHER. |
nationalityIndividual string |
The customer’s nationality. This will be the three-letter country ISO code. |
birth_countryIndividual string |
The customer’s country of birth. This will be the three-letter country ISO code. |
special_occupationIndividual string |
The customer’s occupation. Valid values can be any of the occupation categories we support. |
company_nameCompany string |
The company name. |
alternative_company_nameCompany string |
The company's alternative or new name. |
incorporation_numberCompany string |
The company’s incorporation number. |
incorporation_typeCompany string |
The company’s incorporation type. Valid values are: 1. SOLE_TRADER2. PRIVATE_LIMITED3. LIMITED_LIABILITY_PARTNERSHIP4. PUBLIC_LIMITED |
incorporation_countryCompany string |
The company’s country of incorporation. This will be the three-letter country ISO code. |
business_purposeCompany string |
The company’s business purpose. Valid values are: 1. REGULATED_ENTITY2. PRIVATE_ENTITY3. UNREGULATED_FUND4. TRUST5. FOUNDATION6. RELIGIOUS_BODY7. GOVERNMENT_ENTITY8. CHARITY9. CLUB10. SOCIETY |
primary_contact_nameCompany string |
The company’s primary contact full name. |
primary_contact_emailCompany string |
The company’s primary contact email address. |
ADDRESS
Attributes
| Parameter | Description |
|---|---|
typestring |
The address type. Valid values are PRIMARY, ALTERNATIVE, or OTHER. |
property_numberstring |
The property number for this address. |
property_namestring |
The property name for this address. |
linestring |
The first line of the customer’s address. |
extra_linestring |
The second line of the customer’s address. |
citystring |
The city or town of the customer’s address. |
state_or_provincestring |
The county, state or province of the customer’s address. If US customer, the US states must use the USPS abbreviation (refer to ISO 3166-2), for example NY, MI, or CA. |
postal_codestring |
The post or zip code of the customer’s address. This is a required field. |
countrystring |
The country of the customer’s address. This will be the three-letter country ISO code. |
from_datedate |
The date the customer moved in to this address. The format is YYYY-MM-DD. |
to_datedate |
The date the customer moved out of this address. The format is YYYY-MM-DD. Leave as null if currently residing in address. |
line, city, postal_code and country are the minimum required attributes for a valid address . Where the address breakdown is available, please ensure they are supplied into the correct attributes. For example, use property_number and property_name if known, rather than storing them into line or extra_line.
As part of the match object, only the available address attributes will be returned - for example the postal_code will not be returned when not available for a given watchlist entity.
Create a customer
Definition
POST https://api.swiftdil.com/v1/customers
Example Request
$ curl https://api.swiftdil.com/v1/customers \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X POST
-d '{
"type" : "INDIVIDUAL",
"email" : "john.doe@example.com",
"title" : "MR",
"first_name" : "John",
"middle_name": "A.",
"last_name" : "Doe",
"dob" : "1980-01-01",
"gender": "MALE",
"addresses" : [
{
"type": "PRIMARY",
"property_name": "Custom House",
"line": "Main Street",
"extra_line": "City Square",
"city": "Aldgate",
"state_or_province": "London",
"postal_code": "E99 0ZZ",
"country": "GBR",
"from_date": "2010-01-01"
}
],
}'
Example Response
{
"id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"created_at": "2017-01-17T23:46:26Z",
"updated_at": "2017-01-17T23:46:26Z",
"type" : "INDIVIDUAL",
"title" : "MR",
"first_name" : "John",
"middle_name": "A.",
"last_name" : "Doe",
"email" : "john.doe@example.com",
"dob" : "1980-01-01",
"gender": "MALE",
"addresses": [
{
"type": "PRIMARY",
"property_name": "Custom House",
"line": "Main Street",
"extra_line": "City Square",
"city": "Aldgate",
"state_or_province": "London",
"postal_code": "E99 0ZZ",
"country": "GBR",
"from_date": "2010-01-01"
}
]
}
Creates a new customer object.
Attributes
| Parameter | Description |
|---|---|
typeIndividual and Company required |
The customer type. Valid values are INDIVIDUAL or COMPANY. |
joined_atIndividual and Company optional |
The date and time when the customer was registered with you. This is relevant for users that migrate existing customers. |
emailIndividual and Company required |
The customer’s email address. |
telephoneIndividual and Company optional |
The customer’s telephone number. |
mobileIndividual and Company optional |
The customer’s mobile number. |
addressesIndividual and Company optional |
A list of addresses associated with customer. |
titleIndividual optional |
The customer’s title. Valid values are MR, MRS, MISS, or MS. |
first_nameIndividual required |
The customer’s first name. |
middle_nameIndividual optional |
The customer’s middle name |
last_nameIndividual required |
The customer’s last name. |
maiden_nameIndividual optional |
The customer’s maiden. |
alternative_first_nameIndividual optional |
The customer’s alternative or new first name. |
alternative_middle_nameIndividual optional |
The customer's alternative or new middle name. |
alternative_last_nameIndividual optional |
The customer's alternative or new last name. |
dobIndividual optional |
The customer’s date of birth. The format is YYYY-MM-DD. |
genderIndividual optional |
The customer’s gender. Valid values are MALE, FEMALE, or OTHER. |
nationalityIndividual optional |
The customer’s nationality. This will be the three-letter country ISO code. |
birth_countryIndividual optional |
The customer’s country of birth. This will be the three-letter country ISO code. |
special_occupationIndividual string |
The customer’s occupation. Valid values can be any of the occupation categories we support. |
company_nameCompany required |
The company name. |
alternative_company_nameCompany string |
The company's alternative or new name. |
incorporation_numberCompany optional |
The company’s incorporation number. |
incorporation_typeCompany optional |
The company’s incorporation type. Valid values are: 1. SOLE_TRADER2. PRIVATE_LIMITED3. LIMITED_LIABILITY_PARTNERSHIP4. PUBLIC_LIMITED |
business_purposeCompany optional |
The company’s business purpose. Valid values are: 1. REGULATED_ENTITY2. PRIVATE_ENTITY3. UNREGULATED_FUND4. TRUST5. FOUNDATION6. RELIGIOUS_BODY7. GOVERNMENT_ENTITY8. CHARITY9. CLUB10. SOCIETY |
incorporation_countryCompany optional |
The company’s country of incorporation. This will be the three-letter country ISO code. |
primary_contact_nameCompany optional |
The company’s primary contact full name. |
primary_contact_emailCompany optional |
The company’s primary contact email address. |
Retrieve a customer
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/7e375d53-5265-4cb4-b9bf-19d37ef11a9a \
-H 'Authorization: Bearer test_api_token' \
-X GET
Example Response
{
"id": "7e375d53-5265-4cb4-b9bf-19d37ef11a9a",
"created_at": "2017-01-24T12:30:10Z",
"updated_at": "2017-01-24T12:30:10Z",
"type": "COMPANY",
"company_name": "John Doe's Bakery",
"incorporation_type": "PRIVATE_LIMITED",
"incorporation_country": "GBR",
"business_purpose": "PRIVATE_ENTITY",
"email": "company@example.com",
"primary_contact_name": "John Doe",
"primary_contact_email": "john.doe@example.com",
"addresses":[
{
"type": "PRIMARY",
"property_number": "10",
"property_name": "Atrium House",
"line": "Main Business Park",
"city": "Knutsford",
"state_or_province": "Cheshire",
"postal_code": "W99 6ZZ",
"country": "GBR",
"from_date": "2015-01-01"
}
]
}
Retrieves the details of an existing customer. You need only supply the unique customer identifier that was returned upon customer creation.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
Update a customer
Definition
PUT https://api.swiftdil.com/v1/customers/{customer_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28 \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X PUT
-d '{
"type" : "INDIVIDUAL",
"email" : "john.doe@example.com",
"title" : "MR",
"first_name" : "John",
"middle_name": "Smith",
"last_name" : "Doe",
"dob" : "1980-01-01",
"gender": "MALE",
"addresses" : [
{
"type": "PRIMARY",
"property_name": "Custom House",
"line": "Main Street",
"extra_line": "City Square",
"city": "Aldgate",
"state_or_province": "London",
"postal_code": "E99 0ZZ",
"country": "GBR",
"from_date": "2010-01-01"
}
],
}'
Example Response
{
"id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"created_at": "2017-01-17T23:46:26Z",
"updated_at": "2017-02-01T12:10:11Z",
"type" : "INDIVIDUAL",
"title" : "MR",
"first_name" : "John",
"middle_name": "Smith",
"last_name" : "Doe",
"email" : "john.doe@example.com",
"dob" : "1980-01-01",
"gender": "MALE",
"addresses": [
{
"type": "PRIMARY",
"property_name": "Custom House",
"line": "Main Street",
"extra_line": "City Square",
"city": "Aldgate",
"state_or_province": "London",
"postal_code": "E99 0ZZ",
"country": "GBR",
"from_date": "2010-01-01"
}
]
}
Updates the details of an existing customer. This is an idempotent method and will require all fields you have on the customer to be provided as part of request. This will ensure customer details held in your system are in line with the details held by SwiftDil.
Please note, the customer type will not be editable once set. Additionally, certain fields will not be editable once the customer has undergone a check:
- For individuals -
first_name,middle_name,last_nameanddob. - For companies -
company_name.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
joined_atIndividual and Company |
The date and time when the customer was registered with you. This is relevant for users that migrate existing customers. |
emailIndividual and Company |
The customer’s email address. |
telephoneIndividual and Company |
The customer’s telephone number. |
mobileIndividual and Company |
The customer’s mobile number. |
addressesIndividual and Company |
A list of addresses associated with customer. |
titleIndividual |
The customer’s title. Valid values are MR, MRS, MISS, or MS. |
first_nameIndividual |
The customer’s first name. |
middle_nameIndividual |
The customer’s middle name. |
last_nameIndividual |
The customer’s last name. |
maiden_nameIndividual |
The customer’s maiden. |
alternative_first_nameIndividual |
The customer’s alternative or new first name. |
alternative_middle_nameIndividual |
The customer's alternative or new middle name. |
alternative_last_nameIndividual |
The customer's alternative or new last name. |
dobIndividual |
The customer’s date of birth. The format is YYYY-MM-DD. |
genderIndividual |
The customer’s gender. Valid values are MALE, FEMALE, or OTHER. |
nationalityIndividual |
The customer’s nationality. This will be the three-letter country ISO code. |
birth_countryIndividual |
The customer’s country of birth. This will be the three-letter country ISO code. |
special_occupationIndividual string |
The customer’s occupation. Valid values can be any of the occupation categories we support. |
company_nameCompany |
The company name. |
alternative_company_nameCompany |
The company's alternative or new name. |
incorporation_numberCompany |
The company’s incorporation number. |
incorporation_typeCompany |
The company’s incorporation type. Valid values are: 1. SOLE_TRADER2. PRIVATE_LIMITED3. LIMITED_LIABILITY_PARTNERSHIP4. PUBLIC_LIMITED |
business_purposeCompany |
The company’s business purpose. Valid values are: 1. REGULATED_ENTITY2. PRIVATE_ENTITY3. UNREGULATED_FUND4. TRUST5. FOUNDATION6. RELIGIOUS_BODY7. GOVERNMENT_ENTITY8. CHARITY9. CLUB10. SOCIETY |
incorporation_countryCompany |
The company’s country of incorporation. This will be the three-letter country ISO code. |
primary_contact_nameCompany |
The company’s primary contact full name. |
primary_contact_emailCompany |
The company’s primary contact email address. |
Partially update a customer
Definition
PATCH https://api.swiftdil.com/v1/customers/{customer_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28 \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X PATCH
-d '[
{
"op": "replace",
"path": "/first_name",
"value": "Eric"
},
{
"op": "replace",
"path": "/last_name",
"value": "Jones"
},
{
"op": "replace",
"path": "/addresses/0/to_date",
"value": "2015-01-01"
},
{
"op": "add", "path": "/addresses/-",
"value" : {
"type" : "PRIMARY",
"line": "Street Line",
"city": "Acton",
"postal_code": "W77 X11",
"country": "GBR",
"from_date": "2015-01-02"
}
}
]'
Partially updates the details of an existing customer. Please note the update customer constraints apply here too. Only fields to be updated should be provided in the request as a JSON patch object.
Delete a customer
Definition
DELETE https://api.swiftdil.com/v1/customers/{customer_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28 \
-H 'Authorization: Bearer test_api_token' \
Deletes an existing customer. You need only supply the unique customer identifier that was returned upon customer creation. Also delete any documents and notes on the customer. Please note, once a customer has undergone any type of checks (e.g. screening), they can no longer be deleted.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
List all customers
Definition
GET https://api.swiftdil.com/v1/customers
Lists all existing customers. The customers are returned sorted by creation date, with the most recent customers appearing first. In addition to the attributes listed on the pagination section, the following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
created_afteroptional |
A “greater than” filter on the list based on the object created_at field. |
created_beforeoptional |
A “less than” filter on the list based on the object `created_at field. |
updated_afteroptional |
A “greater than” filter on the list based on the object updated_at field. |
updated_beforeoptional |
A “less than” filter on the list based on the object updated_at field. |
emailoptional |
A “contains” filter on the list based on the object email field. |
first_nameoptional |
A “contains” filter on the list based on the object first_name field. |
middle_nameoptional |
A “contains” filter on the list based on the object middle_name field. |
last_nameoptional |
A “contains” filter on the list based on the object last_name field. |
company_nameoptional |
A “contains” filter on the list based on the object company_name field. |
joined_afteroptional |
A “greater than” filter on the list based on the object joined_at field. |
joined_beforeoptional |
A “less than” filter on the list based on the object joined_at field. |
postal_codeoptional |
An “equal” filter on the list based on the object postal_code field. |
countryoptional |
An “equal” filter on the list based on the object country field. |
typeoptional |
An “equal” filter on the list based on the object type field. |
Risk Profile
The risk profile is designed to provide you with a high-level snapshot of the key customer attributes and risk indicators that will assist you in shaping your ongoing customer relationship. It facilitates a risk-based framework for Client Due Diligence (CDD) and Enhanced Due Diligence (EDD).
The values of the risk profile are calculated by SwiftDil’s proprietary risk engine and cannot be overridden.
The API allows you to retrieve your customer’s risk profile.
The risk profile object
Example Response
{
"profile": {
"politically_exposed": false,
"disqualified_director": false,
"watchlist_entity": false,
"relative_or_close_associate": false,
"adverse_media_exposed": null,
},
"risk": {
"political_exposure": "LOW",
"occupation": "LOW",
"country": "LOW",
"watchlist": null,
"overall": "LOW"
},
"last_trigger": "PERSONAL_DETAILS_UPDATE",
"last_updated": "2017-06-26T12:09:34Z"
}
Attributes
| Parameter | Description |
|---|---|
profilehash, profile object |
Represents a set of attributes key to customer on-boarding. The attributes are automatically derived from the various checks and operations conducted on your customers. |
riskhash, risk object |
Represents a set of key risk factors associated with your customer, to assist you with on-boarding and due diligence. |
last_triggerstring |
The trigger that caused the latest update. Valid values are: 1. CUSTOMER_CREATED2. PERSONAL_DETAILS_UPDATE3. CUSTOMER_SCREENING4. ODD_SCREENING5. COUNTRY_SCORE_UPDATE6. OCCUPATION_SCORE_UPDATE |
last_updateddatetime |
The date and time when the risk profile was last updated. |
PROFILE
Attributes
| Parameter | Description |
|---|---|
watchlist_entityboolean |
This will be set to true if a customer is found to be in a global sanctions and watchlists, or false if no watchlist relation is found. Default value is null if no relevant checks or operations have been conducted. |
politically_exposedboolean |
This will be set to true if a customer is found to be politically exposed, or false if no political exposure is found. Default value is null if no relevant checks or operations have been conducted. |
disqualified_directorboolean |
This will be set to true if a customer is found to be a disqualified director, or false if no director disqualification is found. Default value is null if no relevant checks or operations have been conducted. |
relative_or_close_associateboolean |
This will be set to true if a customer is found to be related to a politically exposed or watchlist entity (company or individual), or false if no relation is found. Default value is null if no relevant checks or operations have been conducted. |
adverse_media_exposedboolean |
This will be set to true if a customer is found to be associated with adverse media, or false if no adverse media relation is found. Default value is null if no relevant checks or operations have been conducted. |
RISK
Attributes
| Parameter | Description |
|---|---|
watchliststring |
This indicates watchlist risk level, which is automatically calculated by SwiftDil upon the completion of a screening request with watchlist in its scope. Valid values are HIGH when set,or null when not set. |
political_exposurestring |
This indicates political exposure level, which is automatically calculated by SwiftDil upon the completion of a screening request with PEP in its scope. Valid values are HIGH, MEDIUM and LOW when set,or null when not set. |
occupationstring |
This represents the occupation risk level, which is automatically calculated by SwiftDil upon the completion of a screening request with PEP in its scope. This is only applicable to customers with political exposure. Valid values are HIGH, MEDIUM and LOW when set,or null when not set. |
countrystring |
This represents the country risk level, which is automatically calculated by SwiftDil based on customer country details, which include the address, nationality, and incorporation_country. Valid values are HIGH, MEDIUM and LOW when set,or null when not set. |
overallstring |
Overall risk score based on all available risk scores. Valid values are HIGH, MEDIUM and LOW when set,or null when not set. |
Retrieve a risk profile
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/risk_profile
Example Request
$ curl https://api.swiftdil.com/v1/customers/b19872d0-07ea-4d04-84eb-eb7758869b28/risk_profile \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X GET
Example Response
{
"profile": {
"politically_exposed": false,
"disqualified_director": false,
"watchlist_entity": false,
"relative_or_close_associate": false,
"adverse_media_exposed": null,
},
"risk": {
"political_exposure": "LOW",
"occupation": "LOW",
"country": "LOW",
"watchlist": null,
"overall": "LOW"
},
"last_trigger": "PERSONAL_DETAILS_UPDATE",
"last_updated": "2017-06-26T12:09:34Z"
}
Retrieves the risk profile of an existing customer.
Attributes
| Parameter | Description |
|---|---|
textrequired |
The text of the note. |
Documents
Documents can be created for a given customer for the following purposes:
- Secure and centralised document storage.
- Perform certain checks such as authenticity and integrity analysis for ID documents e.g passports.
The documents API allows you to create, update, and delete documents. It also provide you with ability to upload relevant attachmentss to our global document delivery infrastructure.
The document object
Example Response
{
"id": "d78913a9-7dcd-46c8-a8fc-91b4f85329f5",
"type": "PASSPORT",
"document_name": "Customer passport",
"document_description": "Primary ID document",
"document_number": "N1234567890",
"issuing_country": "GBR",
"issue_date": "2010-01-01",
"expiry_date": "2020-01-01",
"created_at": "2017-06-28T08:04:32Z",
"updated_at": "2017-06-28T08:04:32Z",
"front_side": {
"id": "cb3673b1-003d-49e4-ac49-3462bf704232",
"name": "foo.txt",
"content_type": "text/plain",
"size": 15
},
"back_side": {
"id": "6aa4d0c6-d7d4-4dbd-8a04-ad2491d0cef6",
"name": "foo.txt",
"content_type": "text/plain",
"size": 15
},
"mrz_line1": "IDFRABERTHIER<<<<<<<<<<<<<<<<<<<<<<<",
"mrz_line2": "N1234567890JOHN<<<<<<<<<<<<6512068F4"
}
Attributes
| Parameter | Description |
|---|---|
idstring |
The unique identifier for the document. |
created_atdatetime |
The date and time when the document was created. |
updated_atdatetime |
The date and time when the document was updated. |
typestring |
The type of document. Valid values are: 1. PASSPORT2. DRIVING_LICENSE3. NATIONAL_INSURANCE_NUMBER4. SOCIAL_SECURITY_NUMBER5. TAX_ID_NUMBER6. NATIONAL_ID_CARD7. VISA8. POLLING_CARD9. RESIDENCE_PERMIT10. OTHER |
issuing_countrystring |
The country that issued the document. This will be the three-letter country ISO code. |
issuing_authoritystring |
The authority or organisation that issued the document. |
document_numberstring |
The unique number associated with document e.g. passport number for a document of type PASSPORT. |
document_namestring |
The name of the document e.g. Bank Letter. |
document_descriptionstring |
The description of the document e.g. Bank letter confirming John Doe’s address history. |
mrz_line1string |
The first line of MRZ string. |
mrz_line2string |
The second line of MRZ string. |
mrz_line3string |
The third line of MRZ string. |
front_sidehash, side object |
The list of attributes pertaining to the front side of the document. |
back_sidehash, side object |
The list of attributes pertaining to the front side of the document. |
issue_datedate |
The issue date of the document. The format is YYYY-MM-DD. |
expiry_datedate |
The expiry date of the document. The format is YYYY-MM-DD. |
SIDE
Attributes
| Parameter | Description |
|---|---|
idstring |
The unique identifier for the file. |
namestring |
The file name. |
content_typestring |
The content type of the file (e.g. text/plain). |
sizeinteger |
The size of the file in bytes. |
Create and upload a document
Definition
POST https://api.swiftdil.com/v1/customers/{customer_id}/documents
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/documents \
-H 'Authorization: Bearer test_api_token' \
-X POST
-F 'front_image=@foo.jpg' \
-F 'back_image=@bar.jpg' \
-F 'type=PASSPORT' \
-F 'document_name=Customer passport' \
-F 'document_description=Primary ID document' \
-F 'document_number=N1234567890' \
-F 'issuing_country=GBR' \
-F 'issue_date=2010-01-01' \
-F 'expiry_date=2020-01-01' \
-F 'mrz_line1=IDGBRDOE<<<<<<<<<<<<<<<<<<<<<<<<<<<<' \
-F 'mrz_line2=N1234567890JOHN<<<<<<<<<<<<6512068F4'
Example Response
{
"id": "d78913a9-7dcd-46c8-a8fc-91b4f85329f5",
"type": "PASSPORT",
"document_name": "Customer passport",
"document_description": "Primary ID document",
"document_number": "N1234567890",
"issuing_country": "GBR",
"issue_date": "2010-01-01",
"expiry_date": "2020-01-01",
"created_at": "2017-06-28T08:04:32Z",
"updated_at": "2017-06-28T08:04:32Z",
"front_side": {
"id": "cb3673b1-003d-49e4-ac49-3462bf704232",
"name": "foo.jpg",
"content_type": "text/plain",
"size": 15
},
"back_side": {
"id": "6aa4d0c6-d7d4-4dbd-8a04-ad2491d0cef6",
"name": "bar.jpg",
"content_type": "text/plain",
"size": 15
},
"mrz_line1": "IDGBRDOE<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
"mrz_line2": "N1234567890JOHN<<<<<<<<<<<<6512068F4"
}
Creates a new document object. Optionally, attachmentss can be uploaded as part of the document creation. attachmentss must be uploaded as a multi-part form and the file size must not exceed 5MB.
Attributes
| Parameter | Description |
|---|---|
typerequired |
The type of document. Valid values are: 1. PASSPORT2. DRIVING_LICENSE3. NATIONAL_INSURANCE_NUMBER4. SOCIAL_SECURITY_NUMBER5. TAX_ID_NUMBER6. NATIONAL_ID_CARD7. VISA8. POLLING_CARD9. RESIDENCE_PERMIT10. OTHER |
issuing_countryoptional |
The country that issued the document. This will be the three-letter country ISO code. |
issuing_authorityoptional |
The authority or organisation that issued the document. |
document_numberoptional |
The unique number associated with document e.g. passport number for a document of type PASSPORT. |
document_nameoptional |
The name of the document e.g. Bank Letter. |
document_descriptionoptional |
The description of the document e.g. Bank letter confirming John Doe’s address history. |
mrz_line1optional |
The first line of MRZ string. |
mrz_line2optional |
The second line of MRZ string. |
mrz_line3optional |
The third line of MRZ string. |
front_sideoptional |
The list of attributes pertaining to the front side of the document. |
back_sideoptional |
The list of attributes pertaining to the front side of the document. |
issue_dateoptional |
The issue date of the document. The format is YYYY-MM-DD. |
expiry_dateoptional |
The expiry date of the document. The format is YYYY-MM-DD. |
Retrieve a document
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/documents/{document_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/documents/d78913a9-7dcd-46c8-a8fc-91b4f85329f5 \
-H 'Authorization: Bearer test_api_token' \
-X GET
Example Response
{
"id": "d78913a9-7dcd-46c8-a8fc-91b4f85329f5",
"type": "PASSPORT",
"document_name": "Customer passport",
"document_description": "Primary ID document",
"document_number": "N1234567890",
"issuing_country": "GBR",
"issue_date": "2010-01-01",
"expiry_date": "2020-01-01",
"created_at": "2017-06-28T08:04:32Z",
"updated_at": "2017-06-28T08:04:32Z",
"front_side": {
"id": "cb3673b1-003d-49e4-ac49-3462bf704232",
"name": "foo.jpg",
"content_type": "text/plain",
"size": 15
},
"back_side": {
"id": "6aa4d0c6-d7d4-4dbd-8a04-ad2491d0cef6",
"name": "bar.jpg",
"content_type": "text/plain",
"size": 15
},
"mrz_line1": "IDGBRDOE<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
"mrz_line2": "N1234567890JOHN<<<<<<<<<<<<6512068F4"
}
Retrieves the details of an existing document. You need to supply the unique customer and document identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
document_idrequired |
The unique identifier for the document. |
Download a document
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/documents/{document_id}/download
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/d78913a9-7dcd-46c8-a8fc-91b4f85329f5/download?side=front \
-H 'Authorization: Bearer test_api_token' \
-X GET
Downloads a previously uploaded document. You need to supply the unique customer and document identifier. Optionally, you can specify which side of a document to download by specifying the side parameter, with front or back as the value. When the side parameter is not explicitly specified, the front side will be downloaded by default.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
document_idrequired |
The unique identifier for the document. |
sideoptional |
The side of the document to download. Valid values are front or back. When not specified, the front side will be downloaded. |
Update a document
Definition
PUT https://api.swiftdil.com/v1/customers/{customer_id}/documents/{document_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/7e375d53-5265-4cb4-b9bf-19d37ef11a9a/documents/d78913a9-7dcd-46c8-a8fc-91b4f85329f5 \
-H 'Authorization: Bearer test_api_token' \
-X PUT
-F 'front_image=@foo.jpg' \
-F 'back_image=@bar.jpg' \
-F 'type=DRIVING_LICENSE' \
-F 'document_name=Customer driving license' \
-F 'document_description=Primary ID document' \
-F 'document_number=N1234567890' \
-F 'issuing_country=GBR' \
-F 'issue_date=2010-01-01' \
-F 'expiry_date=2020-01-01'
Example Response
{
"id": "d78913a9-7dcd-46c8-a8fc-91b4f85329f5"
"type": "DRIVING_LICENSE",
"document_name": "Customer driving license",
"document_description": "Primary ID document",
"document_number": "N1234567890",
"issuing_country": "GBR",
"issue_date": "2010-01-01",
"expiry_date": "2020-01-01",
"created_at": "2017-06-28T08:04:32Z",
"updated_at": "2017-06-28T12:01:06Z",
"front_side": {
"id": "cb3673b1-003d-49e4-ac49-3462bf704232",
"name": "foo.jpg",
"content_type": "text/plain",
"size": 15
},
"back_side": {
"id": "6aa4d0c6-d7d4-4dbd-8a04-ad2491d0cef6",
"name": "bar.jpg",
"content_type": "text/plain",
"size": 15
}
}
Updates the details of an existing document. This is an idempotent method and will require all fields you have on the document (including attachments if applicable) to be provided as part of request. This will ensure document details held in your system are in line with the details held by SwiftDil.
Please note, a document attachment will not be editable once it had undergone a image verification check. Similarly, the MRZ lines will not be editable once an MRZ verification check had been made.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
document_idrequired |
The unique identifier for the document. |
type |
The type of document. Valid values are: 1. PASSPORT2. DRIVING_LICENSE3. NATIONAL_INSURANCE_NUMBER4. SOCIAL_SECURITY_NUMBER5. TAX_ID_NUMBER6. NATIONAL_ID_CARD7. VISA8. POLLING_CARD9. RESIDENCE_PERMIT10. OTHER |
issuing_country |
The country that issued the document. This will be the three-letter country ISO code. |
issuing_authority |
The authority or organisation that issued the document. |
document_number |
The unique number associated with document e.g. passport number for a document of type PASSPORT. |
document_name |
The name of the document e.g. Bank Letter. |
document_description |
The description of the document e.g. Bank letter confirming John Doe’s address history. |
mrz_line1 |
The first line of MRZ string. |
mrz_line2 |
The second line of MRZ string. |
mrz_line3 |
The third line of MRZ string. |
front_side |
The list of attributes pertaining to the front side of the document. |
back_side |
The list of attributes pertaining to the front side of the document. |
issue_date |
The issue date of the document. The format is YYYY-MM-DD. |
expiry_date |
The expiry date of the document. The format is YYYY-MM-DD. |
Partially update a document
Definition
PATCH https://api.swiftdil.com/v1/customers/{customer_id}/document/{document_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/documents/d78913a9-7dcd-46c8-a8fc-91b4f85329f5 \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X PATCH
-d '[
{
"op": "replace",
"path": "/type",
"value": "DRIVING_LICENSE"
},
]'
Partially updates the details of an existing document. Please note the update document constraints apply here too. Only fields to be updated should be provided in the request as a JSON patch object.
List all documents
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/documents
Lists all existing documents associated with a given customer. The documents are returned sorted by creation date, with the most recent documents appearing first. In addition to the attributes listed on the pagination section, the following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
created_afteroptional |
A “greater than” filter on the list based on the object created_at field. |
created_beforeoptional |
A “less than” filter on the list based on the object `created_at field. |
updated_afteroptional |
A “greater than” filter on the list based on the object updated_at field. |
updated_beforeoptional |
A “less than” filter on the list based on the object updated_at field. |
typeoptional |
An “equal” filter on the list based on the object type field. |
Screenings
SwiftDil enables you to meet your AML screening commitments through the application of our proprietary scorecard and fuzzy logic to screen your customer against our comprehensive database.
The API allows you to create and retrieve screening requests. Depending on the scope, a request can include the following screening types : global watchlists (including CIA Watchlists, Government Sanctions, Anti-Terrorism and AML Watchlists), Politically Exposed Persons (PEPs), adverse media and disqualified entities.
The screening object
Example Response
{
"id": "123456-7890-4cb4-b9bf-12a34bc56d7e",
"customer_id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"entity_name": "Jane Doe",
"created_at": "2017-01-21T13:00:16Z",
"updated_at": "2017-01-21T13:00:16Z",
"scope": ["PEP","WATCHLIST","DISQUALIFIED_ENTITIES"],
"status": "PENDING",
"outcome": {
"PEP": "CLEAR",
"WATCHLIST": "AWAITING_VALIDATION",
"DISQUALIFIED_ENTITIES": "CLEAR"
}
}
Attributes
| Parameter | Description |
|---|---|
idstring |
The unique identifier for the screening. |
customer_idstring |
The unique identifier for the customer. |
entity_namestring |
The concatenated first_name and last_name of the customer if an individual, or company_name if a company. |
created_atdatetime |
The date and time when the screening was created. |
updated_atdatetime |
The date and time when the screening or related matches were updated. |
scopelist screening type |
The list of screening types to be performed. |
outcomehash |
Provides summary of screening result, in line with the selected screening scope. The format will be a list of key-value pairs where each of the keys is the screening scope and the value is the screening result. |
statusstring |
The overall status of the screening for the entire scope. Values can be: 1. CREATED - indicates screening request is created. 2. PENDING - indicates one or more of the screenings in scope are either IN_PROGRESS or AWAITING_VALIDATION. 3. DONE - indicates all the screenings in scope have been completed by SwiftDil and matches validated via the matches API where applicable. This means, all the screenings in scope have a status of CONFIRMED, DISMISSED or CLEAR. |
SCREENING TYPE
The following table outlines the various screening types available and their respective country coverage.
| Scope | Description | Coverage |
|---|---|---|
WATCHLIST |
We will search your customer against our global watchlists. We will also highlight if your customer is Related or a Close Associate (RCA) of a watchlist or sanctioned entity, be it an individual or an organisation. | Global |
PEP |
We will search your customer against our politically exposed persons (PEP) database. We will also highlight if your customer is Related or a Close Associate (RCA) of a PEP entity. | Global |
DISQUALIFIED_ENTITIES |
We will search your customer against our disqualified entities database which also includes disqualified , banned and barred individuals and companies. | Global |
ADVERSE_MEDIA |
We will search your customer against our adverse media database of hand-picked articles from trusted news outlets. | Global |
SCREENING RESULT
Screening result and description
| Result | Description |
|---|---|
IN_PROGRESS |
Indicates the screening is still being processed by SwiftDil. |
AWAITING_VALIDATION |
Indicates SwiftDil has found one or more potential matches against your customer. These matches will require manual validation using the Matches endpoint. |
CONFIRMED |
Indicates at least one match has been confirmed using the Matches endpoint. |
DISMISSED |
Indicates that all the screening matches have been dismissed by you as they were not deemed to be genuine matches (i.e. false positives). |
CLEAR |
Indicates SwiftDil has not found your customer or any potential matches in the relevant databases, as per the scope you specified. Potential matches are determined by SwiftDil’s fuzzy scorecard logic and the pre-defined sensitivity thresholds. |
Create a screening
Definition
POST https://api.swiftdil.com/v1/customers/{customer_id}/screenings/
Example Request
$ curl https://api.swiftdil.com/v1/customers/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X POST
-d '[
"PEP",
"WATCHLIST",
"DISQUALIFIED_ENTITIES"
]'
Example Response
{
"id": "123456-7890-4cb4-b9bf-12a34bc56d7e",
"customer_id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"entity_name": "Jane Doe",
"created_at": "2017-01-21T13:00:16Z",
"updated_at": "2017-01-21T13:00:16Z",
"scope": ["PEP","WATCHLIST","DISQUALIFIED_ENTITIES"],
"status": "PENDING",
"outcome": {
"PEP": "CLEAR",
"WATCHLIST": "AWAITING_VALIDATION",
"DISQUALIFIED_ENTITIES": "CLEAR"
}
}
Creates a new screening object.
Attributes
| Parameter | Description |
|---|---|
scoperequired |
A list of the screenings to be performed. |
Retrieve a screening
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e \
-H 'Authorization: Bearer test_api_token' \
-X GET
Example Response
{
"id": "123456-7890-4cb4-b9bf-12a34bc56d7e",
"customer_id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"entity_name": "Jane Doe",
"created_at": "2017-01-21T13:00:16Z",
"updated_at": "2017-01-21T13:00:16Z",
"scope": ["PEP","WATCHLIST","DISQUALIFIED_ENTITIES"],
"status": "PENDING",
"outcome": {
"PEP": "CLEAR",
"WATCHLIST": "AWAITING_VALIDATION",
"DISQUALIFIED_ENTITIES": "CLEAR"
}
}
Retrieves the details of an existing screening. You need to supply the unique customer and screening identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
List all screenings for customer
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/screenings
Lists all existing screenings for a given customer. The screenings are returned sorted by creation date, with the most recent screenings appearing first. In addition to the attributes listed on the pagination section, the following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
created_afteroptional |
A “greater than” filter on the list based on the object created_at field. |
created_beforeoptional |
A “less than” filter on the list based on the object `created_at field. |
updated_afteroptional |
A “greater than” filter on the list based on the object updated_at field. |
updated_beforeoptional |
A “less than” filter on the list based on the object updated_at field. |
scopeoptional |
An “equal” filter on the list based on the object scope field. |
statusoptional |
An “equal” filter on the list based on the object status field. |
Search screenings
Definition
GET https://api.swiftdil.com/v1/search/screenings
Search for screenings across all existing customers. The screenings are returned sorted by creation date, with the most recent screenings appearing first. The following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
created_afteroptional |
A “greater than” filter on the list based on the object created_at field. |
created_beforeoptional |
A “less than” filter on the list based on the object `created_at field. |
updated_afteroptional |
A “greater than” filter on the list based on the object updated_at field. |
updated_beforeoptional |
A “less than” filter on the list based on the object updated_at field. |
customer_idsoptional |
A “equal' filter on the list based on the customer object id field. This can be a list. |
scopeoptional |
An "equal” filter on the list based on the object scope field. |
statusoptional |
An “equal” filter on the list based on the object status field. |
Matches
A screening request may result in one or multiple matches. A match object represents a potential match as determined by SwiftDil’s fuzzy scorecard logic and pre-defined thresholds.
The matches API allows you to retrieve and validate matches relating to a given screening request. The validation of a potential match refers to either confirmation or dismissal of the match once you have reviewed the details at hand.
The match object
Example Response
{
"id": "123456-7890-4cb4-b9bf-12a34bc56dff",
"created_at": "2017-01-21T15:00:16Z",
"updated_at": "2017-01-21T15:00:16Z",
"entity_type": "INDIVIDUAL",
"match_type": ["SPECIAL_INTEREST_PERSON"],
"validation_result": "AWAITING_VALIDATION",
"names": [
{
"name_type": "PRIMARY_NAME",
"first_name": "John",
"last_name": "Doe"
},
{
"name_type": "ALSO_KNOWN_AS",
"first_name": "Jo",
"last_name": "Doe"
}
],
"documents": [
{
"type": "PASSPORT",
"number": "A123456789"
},
{
"type": "DRIVING_LICENSE",
"number": "B987654321",
"note": "Registered by Customs Office"
}
],
"addresses": [
{
"line": "Middle house",
"city": "Forest Hill",
"Country": "GBR"
},
{
"line": "Old house, main street",
"city": "Aldgate",
"Country": "GBR"
}
],
"references": [
{
"name": "OFAC Specially Designated National",
"status": "CURRENT",
"from_date": {
"month": "02",
"year": "2015"
}
}
],
"countries_of_reported_allegation": [
"GBR",
"DEU"
],
"countries_of_citizenship": [
"GBR"
],
"dobs": [
{
"month": "01",
"year": "1980"
}
],
"gender": "MALE",
"image_uri": [
"http://example.example/images/sample1.jpg",
"http://example.example/images/sample2.jpg"
],
"deceased": false,
"scorecard": {
"overall_score": 91.85,
"breakdown": [
{
"field_name": "name",
"field_value": "John Doe",
"score": 100,
"risk_weight": 45,
"risk_weighted_score": 45,
"normalised_score": 33.33
},
{
"field_name": "dob",
"field_value": "01/1980",
"score": 90,
"risk_weight": 20,
"risk_weighted_score": 18,
"normalised_score": 13.33
},
{
"field_name": "gender",
"field_value": "MALE",
"score": 100,
"risk_weight": 10,
"risk_weighted_score": 10,
"normalised_score": 7.41
},
{
"field_name": "address",
"field_value": "Old house st., Aldgate, GBR",
"score": 85,
"risk_weight": 60,
"risk_weighted_score": 51,
"normalised_score": 37.78,
"breakdown": [
{
"field_name": "country",
"field_value": "GBR",
"score": 100,
"risk_weight": 15,
"risk_weighted_score": 15,
"normalised_score": 25
},
{
"field_name": "city",
"field_value": "Aldgate",
"score": 100,
"risk_weight": 15,
"risk_weighted_score": 15,
"normalised_score": 25
},
{
"field_name": "line",
"field_value": "Old house st.",
"score": 70,
"risk_weight": 30,
"risk_weighted_score": 21,
"normalised_score": 35
}
]}
]}
}
}
}
Attributes
| Parameter | Description |
|---|---|
idIndividual and Company string |
The unique identifier for the match. |
created_atIndividual and Company datetime |
The date and time when the match was created. |
updated_atIndividual and Company datetime |
The date and time when the match was last updated. |
entity_typeIndividual and Company string |
The type of the matched entity. Values can be INDIVIDUAL or COMPANY. |
validation_resultIndividual and Company string |
The result of the matches confirmation or dismissal process. Values can be AWAITING_VALIDATION, CONFIRMED, or DISMISSED. |
match_typeIndividual and Company list |
The type of the match. Values can be: 1. SPECIAL_INTEREST_PERSON2. SPECIAL_INTEREST_ENTITY3. POLITICALLY_EXPOSED_PERSON4. RELATIVE_OR_CLOSE_ASSOCIATE5. DISQUALIFIED_DIRECTOR |
namesIndividual and Company list name |
The matched individual or company names. |
noteIndividual and Company string |
Additional notes if available on matched individual or company. When none available, this will be null. |
documentsIndividual and Company list document |
The documents associated with matched individual or company. When not available, this will be null. |
addressesIndividual and Company list address |
The addresses associated with the matched individual or company. When not available, this will be null. |
scorecardIndividual and Company hash, scorecard object |
Provides breakdown of scorecard results for potential matches. |
referencesIndividual and Company list reference |
The reference of listed information. When not available, this will be null. |
associated_countriesIndividual and Company list |
The matched individual country of association. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
jurisdictionIndividual and Company list |
The matched individual associated jurisdiction. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_reported_allegationIndividual and Company list |
The matched individual country of allegation. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_citizenshipIndividual list |
The matched individual country of citizenship. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_registrationCompany list |
The matched company country of registration. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_ownershipCompany list |
The matched company country of ownership. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_affiliationCompany list |
The matched company country of affiliation. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_residenceIndividual list |
The matched individual country of residence. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
dobsIndividual list structured date |
The recorded date of births of matched individual. When not available, this will be null. |
genderIndividual string |
The matched individual gender. Values can be MALE, FEMALE, UNKNOWN, or OTHER. |
birth_placesIndividual list |
The matched individual potential birth places. When not available, this will be null. |
occupationsIndividual list occupation |
The matched individual occupation history. When not available, this will be null. |
image_uriIndividual string |
The URI to the image of the matched individual. When not available, this will be null. |
deceasedIndividual boolean |
This will be set to true if the matched individual is deceased, false when alive, or null when unknown. |
incorporation_numberCompany string |
The matched company incorporation number. When not available, this will be null. |
NAME
Attributes
| Parameter | Description |
|---|---|
name_typeIndividual and Company string |
The name type, values can be: 1. PRIMARY_NAME2. ALSO_KNOWN_AS3. FORMERLY_KNOWN_AS4. MAIDEN_NAME5. SPELLING_VARIATION6. EXPANDED_LANGUAGE_VARIATION7. LOW_QUALITY_ALIAS |
first_nameIndividual string |
The first name of the matched individual. |
middle_nameIndividual string |
The middle name of the matched individual. |
last_nameIndividual string |
The last name of the matched individual. |
maiden_nameIndividual string |
The maiden name of the matched individual. |
company_nameCompany string |
The name of the matched company. |
original_script_nameIndividual and Company string |
The name of the matched individual or company, in original script. |
DOCUMENT
Attributes
| Parameter | Description |
|---|---|
typestring |
The type of document. Valid values are: 1. PASSPORT2. DRIVING_LICENSE3. NATIONAL_INSURANCE_NUMBER4. SOCIAL_SECURITY_NUMBER |
numberstring |
The unique number associated with a document e.g. passport number for a document of type PASSPORT. |
notestring |
A note associated with the document. When none available, this will be null. |
STRUCTURED DATE
Attributes
| Parameter | Description |
|---|---|
dayinteger |
The day of birth. This will be null when not available. Format is DD. |
monthinteger |
The month of birth. This will be null when not available. Format is MM. |
yearinteger |
The year of birth. This will be null when not available. Format is YYYY. |
OCCUPATION
Attributes
| Parameter | Description |
|---|---|
titlestring |
The tile of the occupation. |
typestring |
The type of occupation. Values can be PRIMARY_OCCUPATION, PREVIOUS_ROLE, or OTHER_ROLE. |
categorystring |
The category of occupation. Values can be: 1. HEADS_AND_DEPUTIES_STATE_OR_NATIONAL_GOVERNMENT2. NATIONAL_GOVERNMENT_MINISTERS3. MEMBERS_OF_THE_NATIONAL_LEGISLATURE4. SENIOR_CIVIL_SERVANTS_NATIONAL_GOVERNMENT5. SENIOR_CIVIL_SERVANTS_REGIONAL_GOVERNMENT6. EMBASSY_AND_CONSULAR_STAFF7. SENIOR_MEMBERS_OF_THE_ARMED_FORCES8. SENIOR_MEMBERS_OF_THE_POLICE_SERVICES9. SENIOR_MEMBERS_OF_THE_SECRET_SERVICES10. SENIOR_MEMBERS_OF_THE_JUDICIARY11. STATE_CORPORATION_EXECUTIVES12. STATE_AGENCY_OFFICIALS13. HEADS_AND_DEPUTY_HEADS_OF_REGIONAL_GOVERNMENT14. REGIONAL_GOVERNMENT_MINISTERS15. RELIGIOUS_LEADERS16. POLITICAL_PARTY_OFFICIALS17. INTERNATIONAL_ORGANISATION_OFFICIALS18. CITY_MAYORS19. LOCAL_PUBLIC_OFFICIALS20. INTERNATIONAL_SPORTING_ORGANISATION_OFFICIALS21. OTHER |
from_datestructured date object |
The date the individual commenced the occupation.. |
to_datestructured date object |
The date the individual terminated occupation. This will be null if the the occupation is current. |
REFERENCE
Attributes
| Parameter | Description |
|---|---|
namestring |
The name of the reference. |
from_datestructured date object |
The date the reference information is effective from. This will be null if no date is applicable. |
to_datestructured date object |
The date the reference information is effective to. This will be null if no date is applicable. |
statusstring |
Current status of the reference. Possible values are CURRENT or SUSPENDED. |
SCORECARD
Attributes
| Parameter | Description |
|---|---|
overall_scorestring |
The calculated match percentage, based on our SwiftDil’s proprietary fuzzy matching engine. 100 indicates a perfect match. Only matches with scores breaching the pre-defined thresholds will be returned. |
breakdownhash, breakdown object |
The breakdown of the scorecard. |
BREAKDOWN
The breakdown consists of nested object following the convention below:
Attributes
| Parameter | Description |
|---|---|
field_namestring |
Will specify the field assessed by the scorecard. For individual customers, the values are: 1. name2. document3. address4. dob5. gender6. nationalityFor companies, the values are: 1. name2. document3. address4. incorporation_number6. incorporation_country |
field_valuestring |
The value of the field. Where more than one value exists, for example a matched individual has more than one name, the closest match will be returned. |
scorenumber |
The match percentage score we calculate for a field. 100 indicates a perfect match. |
risk_weightnumber |
The weight of the risk associated with a given field. The higher the weight, in relation to other fields, the more impact it has on the overall_score. |
risk_weighted_scorenumber |
The risk weighted score of the field defined as the product of (score x risk_weight) / 100. |
normalised_scorenumber |
The normalised score of the field in relation to the overall_score. When this attribute is aggregated across the various fields, for a given match, it should equate the overall_score. |
NON-STANDARD COUNTRY ISO CODE
The following table lists all non-standard country ISO codes used by SwiftDil.
| ISO Code | Description |
|---|---|
000 |
Unknown. |
111 |
International. |
222 |
Abkhazia. |
333 |
Kosovo. |
444 |
Curaçao. |
555 |
None. |
666 |
St. Maarten. |
777 |
South Ossetia. |
888 |
Turkish Republic of Northern Cyprus. |
Retrieve a match
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches/{match_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/123456-7890-4cb4-b9bf-12a34bc56dff \
-H 'Authorization: Bearer test_api_token' \
-X GET
Example Response
{
"id": "123456-7890-4cb4-b9bf-12a34bc56dff",
"created_at": "2017-01-21T15:00:16Z",
"updated_at": "2017-01-21T15:00:16Z",
"entity_type": "INDIVIDUAL",
"match_type": ["SPECIAL_INTEREST_PERSON"],
"validation_result": "AWAITING_VALIDATION",
"names": [
{
"name_type": "PRIMARY_NAME",
"first_name": "John",
"last_name": "Doe"
},
{
"name_type": "ALSO_KNOWN_AS",
"first_name": "Jo",
"last_name": "Doe"
}
],
"documents": [
{
"type": "PASSPORT",
"number": "A123456789"
},
{
"type": "DRIVING_LICENSE",
"number": "B987654321",
"note": "Registered by Customs Office"
}
],
"addresses": [
{
"line": "Middle house",
"city": "Forest Hill",
"Country": "GBR"
},
{
"line": "Old house, main street",
"city": "Aldgate",
"Country": "GBR"
}
],
"references": [
{
"name": "OFAC Specially Designated National",
"status": "CURRENT",
"from_date": {
"month": "02",
"year": "2015"
}
}
],
"countries_of_reported_allegation": [
"GBR",
"DEU"
],
"countries_of_citizenship": [
"GBR"
],
"dobs": [
{
"month": "01",
"year": "1980"
}
],
"gender": "MALE",
"image_uri": [
"http://example.example/images/sample1.jpg",
"http://example.example/images/sample2.jpg"
],
"deceased": false,
"scorecard": {
"overall_score": 91.85,
"breakdown": [
{
"field_name": "name",
"field_value": "John Doe",
"score": 100,
"risk_weight": 45,
"risk_weighted_score": 45,
"normalised_score": 33.33
},
{
"field_name": "dob",
"field_value": "01/1980",
"score": 90,
"risk_weight": 20,
"risk_weighted_score": 18,
"normalised_score": 13.33
},
{
"field_name": "gender",
"field_value": "MALE",
"score": 100,
"risk_weight": 10,
"risk_weighted_score": 10,
"normalised_score": 7.41
},
{
"field_name": "address",
"field_value": "Old house st., Aldgate, GBR",
"score": 85,
"risk_weight": 60,
"risk_weighted_score": 51,
"normalised_score": 37.78,
"breakdown": [
{
"field_name": "country",
"field_value": "GBR",
"score": 100,
"risk_weight": 15,
"risk_weighted_score": 15,
"normalised_score": 25
},
{
"field_name": "city",
"field_value": "Aldgate",
"score": 100,
"risk_weight": 15,
"risk_weighted_score": 15,
"normalised_score": 25
},
{
"field_name": "line",
"field_value": "Old house st.",
"score": 70,
"risk_weight": 30,
"risk_weighted_score": 21,
"normalised_score": 35
}
]
}
]
}
}
Retrieves the details of an existing match. You need to supply the unique customer, screening and match identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
match_idrequired |
The unique identifier for the match. |
List all matches
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/\
-H 'Authorization: Bearer test_api_token' \
-X GET
Lists all existing matches. The matches are returned sorted by overall score, with the highest scoring matches appearing first. In addition to the attributes listed on the pagination section, the following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
match_typeoptional |
An “equal” filter on the list based on the object match_type field. |
validation_resultoptional |
An “equal” filter on the list based on the object validation_result field. |
Confirm a match
Definition
POST https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches/{match_id}/confirm
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/123456-7890-4cb4-b9bf-12a34bc56dff/confirm\
-H 'Authorization: Bearer test_api_token' \
-X POST
Confirms a customer match. You need to supply the unique customer, screening and match identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
match_idrequired |
The unique identifier for the match. |
Dismiss a match
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches/{match_id}/dismiss
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/123456-7890-4cb4-b9bf-12a34bc56dff/dismiss\
-H 'Authorization: Bearer test_api_token' \
-X POST
Dismisses a customer match. You need to supply the unique customer, screening and match identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
match_idrequired |
The unique identifier for the match. |
Confirm multiple matches
Definition
POST https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches/confirm
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/confirm\
-H 'Authorization: Bearer test_api_token' \
-X POST
-d '[
"123456-7890-4cb4-b9bf-12a34bc56dff",
"123456-7890-4cb4-b9bf-14aa13dd77989"
]'
Bulk confirms multiple customer matches. You need to supply the unique customer, screening and match identifiers.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
match_idsrequired |
The list of match IDs to be confirmed in bulk. |
Dismiss multiple matches
Definition
POST https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches/dismiss
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/dismiss\
-H 'Authorization: Bearer test_api_token' \
-X POST
-d '[
"123456-7890-4cb4-b9bf-12a34bc56dff",
"123456-7890-4cb4-b9bf-14aa13dd77989"
]'
Bulk dismisses multiple customer matches. You need to supply the unique customer, screening and match identifiers.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
match_idsrequired |
The list of match IDs to be dismissed in bulk. |
Associations
The API allows you to retrieve entities associated with a given match. The associated entities can be other individuals or companies.
The association object
Example Response
{
"id": "123456-7890-4cb4-b9bf-01f11dc85e11",
"created_at": "2017-01-21T15:00:16Z",
"updated_at": "2017-01-21T15:00:16Z",
"entity_type": "INDIVIDUAL",
"match_type": ["RELATIVE_OR_CLOSE_ASSOCIATE"],
"association_type": "WIFE",
"direction": "OUTBOUND",
"status": "CURRENT",
"names": [
{
"name_type": "PRIMARY_NAME",
"first_name": "Sue",
"last_name": "Doe"
}
],
"addresses": [
{
"line": "Middle house",
"city": "Forest Hill",
"Country": "GBR"
},
{
"line": "Old house, main street",
"city": "Aldgate",
"Country": "GBR"
}
],
"image_uri": [
"http://example.example/images/sample3.jpg",
]
}
Attributes
| Parameter | Description |
|---|---|
idstring |
The unique identifier for the associated individual or company. |
created_atdatetime |
The date and time when the associated entity was created. |
updated_atdatetime |
The date and time when the associated entity was updated. |
entity_typestring |
The type of the associated entity. Values can be INDIVIDUAL or COMPANY. |
match_typeIndividual and Company list |
The type of the match. Values can be: 1. SPECIAL_INTEREST_PERSON2. SPECIAL_INTEREST_ENTITY3. POLITICALLY_EXPOSED_PERSON4. RELATIVE_OR_CLOSE_ASSOCIATE5. DISQUALIFIED_DIRECTOR |
association_typestring |
The type of association. Value can be: 1. WIFE2. HUSBAND3. BROTHER4. SISTER5. SON6. DAUGHTER7. MOTHER8. FATHER9. COUSIN10. STEP_SON11. STEP_DAUGHTER12. BROTHER_IN_LAW13. SISTER_IN_LAW14. UNCLE15. AUNT16. MOTHER_IN_LAW17. FATHER_IN_LAW18. GRANDFATHER19. GRANDMOTHER20. SON_IN_LAW21. DAUGHTER_IN_LAW22. NIECE23. NEPHEW24. GRANDSON25. GRANDDAUGHTER26. STEPFATHER27. STEPMOTHER28. BUSINESS_ASSOCIATE29. FRIEND30. FINANCIAL_ADVISER31. LEGAL_ADVISER32. COLLEAGUE33. AGENT_OR_REPRESENTATIVE34. EMPLOYEE35. ASSOCIATE36. CHILD37. FAMILY_MEMBER38. POLITICAL_ADVISER39. SENIOR_OFFICIAL40. UNMARRIED_PARTNER41. SAME_SEX_SPOUSE42. EMPLOYER43. SHAREHOLDER_OR_OWNER44. ASSOCIATED_SPECIAL_INTEREST_PERSON45. PARENT_COMPANY46. SUBSIDIARY47. ASSET |
statusstring |
The association status. This will be set as CURRENT if the association is in effect, or PREVIOUS if the association has ceased to exist. When not available, this will be null. |
directionstring |
The direction of the association. This will be set as OUTBOUND when the association type is expressed as the relationship of a match towards the associate (e.g. FATHER), or INBOUND when expressed from associate towards a match (e.g. SON). Both directions will always be returned. |
nameslist name |
The associated individual or company name. |
notestring |
Additional notes if available on associated individual or company. When none available, this will be null. |
documentsIndividual and Company list document |
The documents associated with individual or company. When not available, this will be null. |
addresseslist address |
The associated individual or company addresses. When not available, this will be null. |
referencesIndividual and Company list reference |
The reference of listed information. When not available, this will be null. |
associated_countriesIndividual and Company list |
The associated individual or company country of association. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
jurisdictionIndividual and Company list |
The associated individual or company associated jurisdiction. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_reported_allegationIndividual and Company list |
The associated individual or company country of allegation. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_citizenshipIndividual list |
The associated individual country of citizenship. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_registrationCompany list |
The associated company country of registration. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_ownershipCompany list |
The matched company country of ownership. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_affiliationCompany list |
The associated company country of affiliation. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
countries_of_residenceIndividual list |
The associated individual country of residence. This will be the three-letter standard or non-standard country ISO code. When not available, this will be null. |
dobslist structured date |
The recorded date of births of associated individual. When not available, this will be null. |
genderstring |
The associated individual gender. Values can be MALE, FEMALE, UNKNOWN, or OTHER. |
birth_placeslist |
The associated individual potential birth places. When not available, this will be null. |
countries_of_citizenshiplist |
The associated individual country of citizenship. This will be the three-letter country ISO code. When not available, this will be null. |
countries_of_residencelist |
The associated individual country of residence. This will be the three-letter country ISO code. When not available, this will be null. |
occupationslist occupation |
The associated individual occupation history. When not available, this will be null. |
image_uristring |
The URI to the image of the associated individual. When not available, this will be null. |
deceasedboolean |
This will be set to true if the associated individual is deceased, false when alive, or null when unknown. |
incorporation_numberstring |
The associated company incorporation number. When not available, this will be null. |
Retrieve an association
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches/{match_id}/associations/{association_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/123456-7890-4cb4-b9bf-12a34bc56dff/associations/123456-7890-4cb4-b9bf-01f11dc85e11 \
-H 'Authorization: Bearer test_api_token' \
-X GET
Example Response
{
"id": "123456-7890-4cb4-b9bf-01f11dc85e11",
"created_at": "2017-01-21T15:00:16Z",
"updated_at": "2017-01-21T15:00:16Z",
"entity_type": "INDIVIDUAL",
"match_type": ["RELATIVE_OR_CLOSE_ASSOCIATE"],
"association_type": "WIFE",
"direction": "OUTBOUND",
"status": "CURRENT",
"names": [
{
"name_type": "PRIMARY_NAME",
"first_name": "Sue",
"last_name": "Doe"
}
],
"addresses": [
{
"line": "Middle house",
"city": "Forest Hill",
"Country": "GBR"
},
{
"line": "Old house, main street",
"city": "Aldgate",
"Country": "GBR"
}
],
"image_uri": [
"http://example.example/images/sample3.jpg",
]
}
Retrieves the details of an existing association. You need to supply the unique customer, screening, match and association identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
match_idrequired |
The unique identifier for the match. |
association_idrequired |
The unique identifier for the association. |
List all associations
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/screenings/{screening_id}/matches/{match_id}/associations/
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/screenings/123456-7890-4cb4-b9bf-12a34bc56d7e/matches/123456-7890-4cb4-b9bf-12a34bc56dff/associations/\
-H 'Authorization: Bearer test_api_token' \
-X GET
Lists all existing associations. The associations are returned sorted by creation date, with the most recent associations appearing first. In addition to the attributes listed on the pagination section, the following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
entity_typeoptional |
An “equal” filter on the list based on the object entity_type field. |
association_typeoptional |
An “equal” filter on the list based on the object association_type field. |
statusoptional |
An “equal” filter on the list based on the object status field. |
Document Verifications
SwiftDil offers an extensive array of out-of-the-box document verifications. Two verification types exist:
MRZ verification performs analysis checks on the Machine Readable Zone (MRZ) values specified by the user.
Image verification performs image, Optical Character Recognition (OCR), and MRZ analysis on the attachments associated with the supplied document.
The table below lists the various analysis checks that are undertaken by SwifDil’s document verification engine, depending on the verification type you opt for.
| Analysis Type | Verification | Description |
|---|---|---|
authenticity_analysis |
IMAGE,MRZ |
Asserts whether the document is a fake, a specimen, or a copy. |
integrity_analysis |
IMAGE,MRZ |
Asserts whether the document was of a valid and an identifiable format |
content_analysis |
IMAGE |
Asserts whether data extracted by OCR from multiple places on the document is consistent with the data held in MRZ. |
mrz_analysis |
IMAGE,MRZ |
Asserts whether MRZ data is valid and adheres to the internationally-recognised standards. |
consistency_analysis |
IMAGE,MRZ |
Asserts whether data on the document is consistent with customers detailed held by SwiftDil e.g. Asserts whether the name on a passport is the same as your customer’s name. |
expiration_check |
IMAGE,MRZ |
Checks whether the document at hand has expired or not. |
Depending on the document type and issuing country, images of both sides of the document may be required. The table below specifies the document types for which both sides are required:
| Name | Country | Type |
|---|---|---|
| National Identity Card | EU and European Free Trade Association | NATIONAL_ID_CARD |
| Driving License | Canada | DRIVING_LICENSE |
| Visa | Biometric Residence Permit | VISA |
The API allows you to create and retrieve document verification requests.
The verification object
Example Response
{
"created_at": "2017-11-10T22:54:17Z",
"updated_at": "2017-11-10T22:54:17Z",
"document_id": "c29ed1c4-59ee-4b8f-ab9c-4829fabaffd5",
"customer_id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"entity_name": "John Doe",
"type": "IMAGE",
"outcome": {
"authenticity_analysis": {
"status": "ERROR",
"breakdown": [
{
"type": "MRZ_MATCHING_TYPE",
"status": "NOT_APPLICABLE"
},
{
"type": "MRZ_VISUAL_FORMAT",
"status": "NOT_APPLICABLE"
},
{
"type": "PHOTO_LOCATION",
"status": "NOT_APPLICABLE"
},
{
"type": "DAYLIGHT_COLOUR_ANALYSIS",
"status": "NOT_APPLICABLE"
},
{
"type": "DOCUMENT_SPECIMEN",
"status": "ERROR"
},
{
"type": "VISUAL_SECURITY_ELEMENTS",
"status": "NOT_APPLICABLE"
}
]
},
"integrity_analysis": {
"status": "CLEAR",
"breakdown": [
{
"type": "ISSUE_COUNTRY",
"status": "CLEAR"
},
{
"type": "DOCUMENT_TYPE_EXPIRATION",
"status": "CLEAR"
},
{
"type": "VALIDITY_OUT_OF_COUNTRY",
"status": "NOT_APPLICABLE"
},
{
"type": "NATIONALITY_MATCH",
"status": "CLEAR"
},
{
"type": "DOCUMENT_RECOGNISED",
"status": "CLEAR"
},
{
"type": "ISSUE_DATE",
"status": "CLEAR"
}
]
},
"content_analysis": {
"status": "NOT_APPLICABLE",
"breakdown": [
{
"type": "DOC_NUMBER_RECOGNISED",
"status": "NOT_APPLICABLE"
},
{
"type": "LAST_NAME_RECOGNISED",
"status": "NOT_APPLICABLE"
},
{
"type": "FIRST_NAME_RECOGNISED",
"status": "NOT_APPLICABLE"
},
{
"type": "BIRTH_DATE_RECOGNISED",
"status": "NOT_APPLICABLE"
}
]
},
"mrz_analysis": {
"status": "CLEAR",
"breakdown": [
{
"type": "MRZ_FIELDS_FORMAT",
"status": "CLEAR"
},
{
"type": "MRZ_CHECKSUM",
"status": "CLEAR"
}
]
},
"consistency_analysis": {
"status": "ATTENTION",
"breakdown": [
{
"type": "CUSTOMER_DOB",
"status": "ATTENTION"
},
{
"type": "CUSTOMER_BIRTH_PLACE",
"status": "NOT_APPLICABLE"
},
{
"type": "CUSTOMER_NATIONALITY",
"status": "ATTENTION"
},
{
"type": "CUSTOMER_LAST_NAME",
"status": "ATTENTION"
},
{
"type": "CUSTOMER_GENDER",
"status": "NOT_APPLICABLE"
},
{
"type": "CUSTOMER_FIRST_NAME",
"status": "ATTENTION"
}
]
},
"expiration_check": {
"status": "ATTENTION",
"breakdown": [
{
"type": "DOCUMENT_EXPIRATION",
"status": "ATTENTION"
}
]
}
},
"properties": {
"document_type": "NATIONAL_IDENTITY_CARD",
"document_data": {
"document_number": "GZ000030E",
"mrz_line1": "IDGIBGZ000030E2Q15000174<<<<<<",
"mrz_line2": "7402061M2501280GBR<<<<<<<<<<<0",
"mrz_line3": "FREEMAN<<PAUL<JAMES<<<<<<<<<<<",
"issuing_country": "GIB",
"expiry_date": {
"day": 28,
"month": 1,
"year": 2025
}
},
"holder_data": {
"first_name": [
"PAUL",
"JAMES"
],
"last_name": [
"FREEMAN"
],
"dob": {
"day": 6,
"month": 2,
"year": 1974
},
"nationality": "GBR",
"gender": "MALE"
},
"extracted_images": []
},
"status": "DONE",
"id": "42583ade-f2b9-4bed-903a-bc46a215040c"
}
Attributes
| Parameter | Description |
|---|---|
idstring |
The unique identifier for the verification. |
customer_idstring |
The unique identifier for the customer. |
entity_namestring |
The concatenated first_name and last_name of the customer if an individual, or company_name if a company. |
document_idstring |
The unique identifier for the document to be verified. |
created_atdatetime |
The date and time when the verification was created. |
updated_atdatetime |
The date and time when the verification was updated. |
typestring |
The type of document verification to be performed. Valid values are: 1. IMAGE2. MRZ |
outcomehash |
Provides the outcome and the breakdown of the analysis done on the document, which facilitates the identification and resolution of any potential warnings. The format will be a list of key-value pairs, the keys representing the document verification check carried out and value is the result. For each of the verification checks, the API may return one of the following results: 1. IN_PROGRESS - indicates the corresponding analysis is in progress.2. CLEAR - indicates the analysis has not found any items requiring attention.3. ATTENTION - indicates the analysis has found items requiring your attention.4. ERROR - indicates the corresponding analysis could not complete because of an error.5. NOT_APPLICABLE - indicates the corresponding analysis is not applicable. |
propertieslist |
The document properties derived using OCR technology. |
statushash |
The overall status of the check for the entire scope. Values can be: 1. INITIATED - indicates verification request is created.2. PENDING - indicates one or more of the verifications checks are iIN_PROGRESS.3. DONE - indicates all the verifications checks have been completed by SwiftDil. |
PROPERTIES
Attributes
| Parameter | Description |
|---|---|
document_typestring |
The type of document detected. Values can be: 1. PASSPORT2. NATIONAL_IDENTITY_CARD3. DRIVING_LICENSE4. RESIDENCE_PERMIT5. VISA6. POLLING_CARD |
holder_datahash, holder data object |
The holder’s personal details as derived from verified document. |
document_datahash, document data object |
The holder’s document details as derived from verified document. |
extracted_imageslist extracted image |
The extracted images as derived from the verified document. |
HOLDER DATA
Attributes
| Parameter | Description |
|---|---|
first_namelist |
First names derived from verified document. |
last_namelist |
Last names derived from verified document. |
dobhash, structured date |
Date of birth derived from verified document. When not available, this will be null. |
genderstring |
Gender derived from verified document. When not available, this will be null. Values can be MALE, FEMALE, UNKNOWN, or OTHER. |
birth_placestring |
Birth place derived from verified document. When not available, this will be null. |
nationalitystring |
Nationality derived from verified document. This will be the three-letter country ISO code. When not available, this will be null. |
addresshash, address |
Address derived from verified document. When not available, this will be null. |
DOCUMENT DATA
Attributes
| Parameter | Description |
|---|---|
document_numberstring |
Number of the document. When not available, this will be null. |
issuing_countrystring |
Issuing country derived from verified document. This will be the three-letter country ISO code. When not available, this will be null. |
issuing_datehash, structured date |
Issuing date derived from verified document. When not available, this will be null. |
expiry_datehash, structured date |
Expiry date derived from verified document. When not available, this will be null. |
mrz_line1string |
First line of MRZ string derived from verified document. When not available, this will be null. |
mrz_line3string |
Second line of MRZ string derived from verified document. When not available, this will be null. |
mrz_line3string |
Third line of MRZ string derived from verified document. When not available, this will be null. |
EXTRACTED IMAGE
Attributes
| Parameter | Description |
|---|---|
typestring |
The segment of the document that has been extracted. Values can be: 1. CROPPED_DOCUMENT2. CROPPED_FACE3. CROPPED_SIGNATURE |
formatstring |
The format of the image. This will always be set to BASE64. |
image_datastring |
The Base64 encoded image data. |
ANALYSIS TYPE
The following table outlines the various analysis types conducted by SwiftDil.
| Analysis Type | Subtype | Description |
|---|---|---|
AUTHENTICITY_ANALYSIS |
DAYLIGHT_COLOUR_ANALYSIS |
Analysis of daylight colours. |
MRZ_VISUAL_FORMAT |
Analysis of MRZ visual format. | |
VISUAL_SECURITY_ELEMENTS |
Analysis of graphical security elements. | |
PHOTO_LOCATION |
Analysis of photo location. | |
MRZ_MATCHING_TYPE |
Analysis of MRZ / document consistency. | |
DOCUMENT_SPECIMEN |
Document specimen check. | |
INTEGRITY_ANALYSIS |
DOCUMENT_RECOGNISED |
Document structure identified. |
VALIDITY_OUT_OF_COUNTRY |
Validity of the document outside its issuing country. | |
DOCUMENT_TYPE_EXPIRATION |
Document expiration date identified. | |
ISSUE_COUNTRY |
Document issuing country identified. | |
ISSUE_DATE |
Document issuing date identified. | |
NATIONALITY_MATCH |
Document nationality identified. | |
CONTENT_ANALYSIS |
FIRST_NAME_RECOGNISED |
First name recognised. |
LAST_NAME_RECOGNISED |
Last name recognised. | |
BIRTH_DATE_RECOGNISED |
Birth date recognised. | |
DOC_NUMBER_RECOGNISED |
Document number recognised. | |
MRZ_ANALYSIS |
MRZ_FIELDS_FORMAT |
Validity of the MRZ content. |
MRZ_CHECKSUM |
MRZ checksum check. | |
CONSISTENCY_ANALYSIS |
CUSTOMER_FIRST_NAME |
Consistency with customer’s first name. |
CUSTOMER_LAST_NAME |
Consistency with customer’s last name. | |
CUSTOMER_DOB |
Consistency with customer’s birth date. | |
CUSTOMER_GENDER |
Consistency with customer’s gender. | |
CUSTOMER_BIRTH_PLACE |
Consistency with customer’s birth place. | |
CUSTOMER_NATIONALITY |
Consistency with customer’s nationality. | |
EXPIRATION_CHECK |
DOCUMENT_EXPIRATION |
Document expiration check. |
Create a verification
Definition
POST https://api.swiftdil.com/v1/customers/{customer_id}/verifications
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/documents \
-H 'Authorization: Token token=test_api_token' \
-X POST
-d '{
"document_id": "d78913a9-7dcd-46c8-a8fc-91b4f85329f5",
"type": "IMAGE"
}'
Creates a new document verification object.
Attributes
| Parameter | Description |
|---|---|
typerequired |
The type of document verification to be performed. Valid values are: 1. IMAGE2. MRZ |
document_idrequired |
The unique identifier for the document to be verified. |
Retrieve a verification
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/verifications/{verification_id}
Example Request
$ curl https://api.swiftdil.com/v1/customer/b19872d0-07ea-4d04-84eb-eb7758869b28/verifications/1d78913a9-7dcd-46c8-a8fc-91b4f85329f5 \
-H 'Authorization: Token token=test_api_token' \
-X GET
Example Response
{
"created_at": "2017-11-10T22:54:17Z",
"updated_at": "2017-11-10T22:54:17Z",
"document_id": "c29ed1c4-59ee-4b8f-ab9c-4829fabaffd5",
"customer_id": "b19872d0-07ea-4d04-84eb-eb7758869b28",
"entity_name": "John Doe",
"type": "IMAGE",
"outcome": {
"authenticity_analysis": {
"status": "ERROR",
"breakdown": [
{
"type": "MRZ_MATCHING_TYPE",
"status": "NOT_APPLICABLE"
},
{
"type": "MRZ_VISUAL_FORMAT",
"status": "NOT_APPLICABLE"
},
{
"type": "PHOTO_LOCATION",
"status": "NOT_APPLICABLE"
},
{
"type": "DAYLIGHT_COLOUR_ANALYSIS",
"status": "NOT_APPLICABLE"
},
{
"type": "DOCUMENT_SPECIMEN",
"status": "ERROR"
},
{
"type": "VISUAL_SECURITY_ELEMENTS",
"status": "NOT_APPLICABLE"
}
]
},
"integrity_analysis": {
"status": "CLEAR",
"breakdown": [
{
"type": "ISSUE_COUNTRY",
"status": "CLEAR"
},
{
"type": "DOCUMENT_TYPE_EXPIRATION",
"status": "CLEAR"
},
{
"type": "VALIDITY_OUT_OF_COUNTRY",
"status": "NOT_APPLICABLE"
},
{
"type": "NATIONALITY_MATCH",
"status": "CLEAR"
},
{
"type": "DOCUMENT_RECOGNISED",
"status": "CLEAR"
},
{
"type": "ISSUE_DATE",
"status": "CLEAR"
}
]
},
"content_analysis": {
"status": "NOT_APPLICABLE",
"breakdown": [
{
"type": "DOC_NUMBER_RECOGNISED",
"status": "NOT_APPLICABLE"
},
{
"type": "LAST_NAME_RECOGNISED",
"status": "NOT_APPLICABLE"
},
{
"type": "FIRST_NAME_RECOGNISED",
"status": "NOT_APPLICABLE"
},
{
"type": "BIRTH_DATE_RECOGNISED",
"status": "NOT_APPLICABLE"
}
]
},
"mrz_analysis": {
"status": "CLEAR",
"breakdown": [
{
"type": "MRZ_FIELDS_FORMAT",
"status": "CLEAR"
},
{
"type": "MRZ_CHECKSUM",
"status": "CLEAR"
}
]
},
"consistency_analysis": {
"status": "ATTENTION",
"breakdown": [
{
"type": "CUSTOMER_DOB",
"status": "ATTENTION"
},
{
"type": "CUSTOMER_BIRTH_PLACE",
"status": "NOT_APPLICABLE"
},
{
"type": "CUSTOMER_NATIONALITY",
"status": "ATTENTION"
},
{
"type": "CUSTOMER_LAST_NAME",
"status": "ATTENTION"
},
{
"type": "CUSTOMER_GENDER",
"status": "NOT_APPLICABLE"
},
{
"type": "CUSTOMER_FIRST_NAME",
"status": "ATTENTION"
}
]
},
"expiration_check": {
"status": "ATTENTION",
"breakdown": [
{
"type": "DOCUMENT_EXPIRATION",
"status": "ATTENTION"
}
]
}
},
"properties": {
"document_type": "NATIONAL_IDENTITY_CARD",
"document_data": {
"document_number": "GZ000030E",
"mrz_line1": "IDGIBGZ000030E2Q15000174<<<<<<",
"mrz_line2": "7402061M2501280GBR<<<<<<<<<<<0",
"mrz_line3": "FREEMAN<<PAUL<JAMES<<<<<<<<<<<",
"issuing_country": "GIB",
"expiry_date": {
"day": 28,
"month": 1,
"year": 2025
}
},
"holder_data": {
"first_name": [
"PAUL",
"JAMES"
],
"last_name": [
"FREEMAN"
],
"dob": {
"day": 6,
"month": 2,
"year": 1974
},
"nationality": "GBR",
"gender": "MALE"
},
"extracted_images": []
},
"status": "DONE",
"id": "42583ade-f2b9-4bed-903a-bc46a215040c"
}
Retrieves the details of an existing document verification. You need to supply the unique customer and verification identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
screening_idrequired |
The unique identifier for the screening. |
List all verifications for customer
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/verifications
Lists all existing verifications for a given customer. The verifications are returned sorted by creation date, with the most recent verifications appearing first. In addition to the attributes listed on the pagination section, the following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
created_afteroptional |
A “greater than” filter on the list based on the object created_at field. |
created_beforeoptional |
A “less than” filter on the list based on the object `created_at field. |
updated_afteroptional |
A “greater than” filter on the list based on the object updated_at field. |
updated_beforeoptional |
A “less than” filter on the list based on the object updated_at field. |
typeoptional |
An “equal” filter on the list based on the object type field. |
statusoptional |
An “equal” filter on the list based on the object status field. |
Search verifications
Definition
GET https://api.swiftdil.com/v1/search/verifications
Search for verifications across all existing customers. The verifications are returned sorted by creation date, with the most recent verifications appearing first. The following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
created_afteroptional |
A “greater than” filter on the list based on the object created_at field. |
created_beforeoptional |
A “less than” filter on the list based on the object `created_at field. |
updated_afteroptional |
A “greater than” filter on the list based on the object updated_at field. |
updated_beforeoptional |
A “less than” filter on the list based on the object updated_at field. |
typeoptional |
An “equal” filter on the list based on the object type field. |
statusoptional |
An “equal” filter on the list based on the object status field. |
document_idsoptional |
A “equal' filter on the list based on the document object id field. This can be a list. |
customer_idsoptional |
A "equal' filter on the list based on the customer object id field. This can be a list. |
Notes
A note is a comment that can be associated with a customer to support operational activities. The API allows you to create, retrieve, update, and delete notes.
The note object
Example Response
{
"id": "91d457aa-b086-42fc-b4f9-c0649b99f689",
"created_at": "2017-01-17T23:46:26Z",
"updated_at": "2017-01-17T23:46:26Z",
"text": "A useful note about John Doe."
}
Attributes
| Parameter | Description |
|---|---|
idstring |
The unique identifier for the note. |
created_atdatetime |
The date and time when the note was created. |
updated_atdatetime |
The date and time when the note was updated. |
textstring |
The text of the note. |
Create a note
Definition
POST https://api.swiftdil.com/v1/customers/{customer_id}/notes/
Example Request
$ curl https://api.swiftdil.com/v1/customers/b19872d0-07ea-4d04-84eb-eb7758869b28/notes \
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X POST
-d '{
"text" : "A useful note about John Doe."
}'
Example Response
{
"id": "91d457aa-b086-42fc-b4f9-c0649b99f689",
"created_at": "2017-01-17T23:46:26Z",
"updated_at": "2017-01-17T23:46:26Z",
"text": "A useful note about John Doe."
}
Creates a new note object.
Attributes
| Parameter | Description |
|---|---|
textrequired |
The text of the note. |
Retrieve a note
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/notes/{note_id}
Example Request
$ curl https://api.swiftdil.com/v1/customers/7e375d53-5265-4cb4-b9bf-18c36dd38e2a/notes/91d457aa-b086-42fc-b4f9-c0649b99f689\
-H 'Authorization: Bearer test_api_token' \
-X GET
Example Response
{
"id": "91d457aa-b086-42fc-b4f9-c0649b99f689",
"created_at": "2017-01-17T23:46:26Z",
"updated_at": "2017-01-17T23:46:26Z",
"text": "A useful note about John Doe."
}
Retrieves the details of an existing note. You need to supply the unique customer and note identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
note_idrequired |
The unique identifier for the note. |
Update a note
Definition
PUT https://api.swiftdil.com/v1/customers/{customer_id}/notes/{note_id}
Example Request
$ curl https://api.swiftdil.com/v1/customers/7e375d53-5265-4cb4-b9bf-18c36dd38e2a/notes/91d457aa-b086-42fc-b4f9-c0649b99f689\
-H 'Authorization: Bearer test_api_token' \
-H 'content-type: application/json' \
-X PUT
-d '{
"text" : "Update note on John Doe."
}'
Example Response
{
"id": "91d457aa-b086-42fc-b4f9-c0649b99f689",
"created_at": "2017-01-17T23:46:26Z",
"updated_at": "2017-01-18T10:10:10Z",
"text": "Update note on John Doe."
}
Updates the details of an existing note. You need to supply the unique customer and note identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
note_idrequired |
The unique identifier for the note. |
text |
The text of the note. |
Delete a note
Definition
DELETE https://api.swiftdil.com/v1/customers/{customer_id}/notes/{note_id}
Example Request
$ curl https://api.swiftdil.com/v1/customers/7e375d53-5265-4cb4-b9bf-18c36dd38e2a/notes/91d457aa-b086-42fc-b4f9-c0649b99f689\
-H 'Authorization: Bearer test_api_token' \
-X DELETE
Deletes an existing note. You need to supply the unique customer and note identifier.
Attributes
| Parameter | Description |
|---|---|
customer_idrequired |
The unique identifier for the customer. |
note_idrequired |
The unique identifier for the note. |
List all notes
Definition
GET https://api.swiftdil.com/v1/customers/{customer_id}/notes
Lists all existing notes associated with a given customer. The notes are returned sorted by creation date, with the most recent notes appearing first. In addition to the attributes listed on the pagination section, the following optional parameters can be used to refine the response.
Attributes
| Parameter | Description |
|---|---|
created_afteroptional |
A “greater than” filter on the list based on the object created_at field. |
created_beforeoptional |
A “less than” filter on the list based on the object `created_at field. |
updated_afteroptional |
A “greater than” filter on the list based on the object updated_at field. |
updated_beforeoptional |
A “less than” filter on the list based on the object updated_at field. |
textoptional |
A “contains” filter on the list based on the object text field. |
