Get fraud networks

Returns fraud networks.

Overview

Use this method to retrieve the fraud networks. The response would contain the found networks sorted by the date and time they were modified.

📘

Note

If you want to get:

Request example

The following request example returns all the found fraud networks. By default, the offset parameter is 0 and limit is 10.

https://api.sumsub.com/resources/applicantFraudNetworks/?offset=0&limit=10

Response explained

NameTypeDescription
networkObjectIncludes the attributes of the network.
statsObjectIncludes the statistic attributes related to the network.
notesArray of objectsContains the note added to the case and the notes attributes.

network attributes

NameTypeDescription
idStringA unique network identification number.
createdAtDateDate and time when the network was created.
modifiedAtDateDate and time when the network was last modified.
nodesArray of objectsIncludes the data that explains how the applicant is associated with the network.

nodes object

NameTypeDescription
idStringA unique applicant identification number.
ipsArray of stringsArray of IP addresses connected with the applicant.
deviceFingerprintsArray of stringsArray of device fingerprints connected with the applicant.
imageTemplatesArray of objectsIncludes the data about the applicant documents, their types and identifiers.
addedAtDateDate and time when the applicant was added to the network.

imageTemplates object

NameTypeDescription
templateTypeStringType of connection including address, fingerprint, ip, poaTemplate, documentTemplate, selfieTemplate, and so on.
addressStringApplicant POA address (not empty for templateType=address).
referenceImageIdStringA unique applicant image identifier that belongs to the applicant of the same node.
idDocTypeStringApplicant document type.
idDocSubTypeStringApplicant document subtype.
imageTemplateIdStringA unique template identification number. Similar documents, selfies, or other images have the same imageTemplateId.

stats attributes

NameTypeDescription
GREENIntegerAmount of approved applicants.
REDIntegerAmount of rejected applicants
sizeIntegerNetwork size.
networkReasonsStringIndicates the reasons for network creation and its similarities.

Possible values:
  • address — applicants added POA with the same addresses.
  • fingerprint — applicants used shared devices when going through the KYC check.
  • ip — applicants used the same IP addresses.
  • poaTemplate — applicants have similar POA.
  • documentTemplate — applicants have similar documents.
  • selfieTemplate — selfies of the applicants have the same background.
topCountriesMap of String,Integer pairsTop applicant countries with a counter.
medianAgeDoubleMedian age of the applicants included in the network.

notes object

NameTypeDescription
idStringA unique note identification number.
targetIdIntegerThe object (networkId) the note relates to.
targetTypeStringapplicantFraudNetwork.
In general case, it also could be applicant, transaction, amlCase, kytCase.
noteStringA note added to the case.
createdAtDateDate and time when the note was created.
modifiedAtDateDate and time when the note was last modified.
createdByStringThe note creator name.
tagsArray of stringsAdded tags.
attachmentsArray of stringsInformation about the note attachments.
clientNoteBooleanTrue.

Response example

{
  "list": {
    "items": [
      {
        "network": {
          "id": "6527f5885694ddb4054b658a",
          "createdAt": "2023-10-12 14:38:42+0000",
          "modifiedAt": "2023-10-12 14:38:42+0000",
          "nodes": [
            {
              "id": "6527f4f021031b3dec9785e1", // applicant id
              "ips": [
                "111.111.11.11",
                "222.222.22.222",
                "333.333.33.333",
                "444.444.44.44"
              ],
              "deviceFingerprints": [
                "6a901dd64f8d68aa5b93bbfad112849e"
              ],
              "imageTemplates": [
                {
                  "templateType": "poaTemplate",
                  "referenceImageId": 1121273889, // image id within the applicant
                  "idDocType": "UTILITY_BILL",
                  "idDocSubType": "FRONT_SIDE",
                  "imageTemplateId": "cd6070288f0645c29d76712c514e62c0" // unique id of the group of POAs
                },
                ...
                {
                  "templateType": "poaTemplate",
                  "referenceImageId": 1667162048,
                  "idDocType": "DRIVERS",
                  "idDocSubType": "BACK_SIDE",
                  "imageTemplateId": "139a87b4645441fdb0916be110f7e1c2"
                }
              ],
              "addedAt": "2023-10-12 14:38:42+0000"
            },
            {
              "id": "6527f4a521031b3dec9785cd",
              "ips": [
                "111.111.11.11",
                "222.222.22.222",
                "333.333.33.333"
              ],
              "deviceFingerprints": [
                "6a901dd64f8d68aa5b93bbfad112849e"
              ]...}
            '''
          ],
        },
        "stats": {
          "GREEN": 0,
          "RED": 1,
          "size": 4,
          "networkReasons": [
            "documentTemplate",
            "poaTemplate",
            "fingerprint"
          ],
          "topCountries": {
            "ALB": 1,
            "DZA": 1
          }
        },
        "notes": [
          {
            "id": "652804f23ad8116578e0d619",
            "targetId": "6527f5885694ddb4054b658a",
            "targetType": "applicantFraudNetwork",
            "note": "Due to suspected fraud, access must be restricted to determine further action.",
            "createdAt": "2023-10-12 14:38:42+0000",
            "modifiedAt": "2023-10-12 14:38:42+0000",
            "createdBy": "Service",
            "tags": [
              "fraud" // tags as set up in the global settings section
            ]
          },
          ...
        ]
      },
      {
        "network": {
          "id": "652807895694ddb4054b65a7",
          ...
        }
        ...
        "totalItems": 8
      }
    }
Language
Authorization
Header
Click Try It! to start a request and see the response here!