API Integration

The Zenoo API empowers you to initiate workflows and collect consolidated & mapped 3rd party data

Zenoo's API integration allows you to initiate of orchestrated journeys using tokens, which also serve to identify end-users when retrieving consolidated results. This eliminates the need for companies to build integrations themselves, this functionality simplifies the process of orchestrating multiple API services and UIs, ultimately providing a more efficient and convenient way to collect consolidated results via API.

Enabling API Initialization

To take advantage of this feature, you can enable API initialization for your journeys. By default, API initialization is disabled for all journeys.

Here's how to enable it:

  1. Accessing the Settings: Start by accessing the "Settings" section within Zenoo.
  2. Enable API Initialization: In the settings, you will find an option to enable API initialization. Toggle this option to activate it.
  3. Generate a New API Secret Key: Once API initialization is enabled, you need to generate a new API secret key. This key is essential for authorizing and securing your API interactions.
  4. Save Changes: After generating the API secret key, make sure to save the changes. This step deploys the key and initialization to the stage environment, making it ready for use.

Getting Token Pairs

For each project there is a Sandbox and Live version, for each of those there is different endpoint available.

Example of the call:

Note: optional same endpoint can be called with data payload, if API Init Data is configured in the flow

POST https://instance.prod-eu.onboardapp.io/api/gateway/execute/pavel.lsegapidata.stage.flow/init
Content-Type:application/json
X-SYNC-TIMEOUT:30000
X-API-KEY:z9rg81six3emjuaf1qbqqkijd7tqiv2rj8adod2w
POST https://instance.prod-eu.onboardapp.io/api/gateway/execute/pavel.lsegapidata.stage.flow/init
Content-Type:application/json
X-SYNC-TIMEOUT:30000
X-API-KEY:z9rg81six3emjuaf1qbqqkijd7tqiv2rj8adod2w
{
  "someidentificatior": "mydata", 
  "uniqueclient": "123Ysk"
}

Returned result will look like this:

{
  "tokens": {
    "pull": "MHqPED",
    "start": "bwTX29"
  }
}

URL contstruction with Token

https://onboard.prod-eu.zenoo.io/0d8fe54d5db6d25cf46f3fd1badd73eda7fc3dee/?t=<tokens.start>

API Pull Interaction

The API Pull interaction is the key to retrieving data from your journey. This interaction can be placed within your workflow wherever you want to collect data.

Here's how to use it:

  1. Specify Fields: Begin by specifying the fields you want to include in the API callback. These fields determine the data you will retrieve.
  2. Placement in Flow: Place the API Pull interaction within your flow at the point where you intend to retrieve data. While it's commonly used at the end of a workflow, it can also be positioned at various points in your process.
  3. Field Mapping: Configure the mapping for the fields you want to use in the API JSON. You can map any field present in the flow before this interaction.

Zenoo provides guidance on available fields and allows you to add unmapped fields effortlessly.

📘

3rd Party Data Response

When orchestrating external APIs within your workflow, you have the flexibility to retrieve the entire response following the format provided by the API provider. You can then choose to map this data to fit your desired output or work with it as originally structured by the provider.

Retrieving Results

With the API Pull interaction in place, you can retrieve journey results effectively. Here's how to do it:

Prerequisites: Before retrieving data, ensure the following conditions are met:

  • API initialization is enabled, and the key is generated (example key: afsdcye9eg8ksxjiipejzy38r9r5fxrrjqln485f)
  • The "INIT" function has been called, and you've received "START & PULL" tokens.
  • Your journey contains the API Pull interaction with mapped data.

How to Retrieve Data:

To retrieve data, make an API call to the endpoint with the "PULL" token. The URL structure for this call is as follows:

GET https://instance.prod-eu.onboardapp.io/api/gateway/sharable-payload/<tokens.pull>

The API output is specified using OpenAPI, you can download the documentation from the Project Dashboard here:

👍

Swagger Documentation

To view the Swagger documentation for the API please follow this link.

If the end-user didn't start, finish, or reach the API Pull interaction in the flow, the response will be empty, prompting the calling side to retry until the desired data is received. Conversely, if the journey has been completed or the flow has progressed beyond the API interaction, the response will contain the expected data.

Example API Output is as follows:

{
  "prove_verify_response": null,
  "output_connector": "error",
  "error": null,
  "prove_trust_score_response": null,
  "output_connector_1": "error",
  "error_1": null,
  "giact_verify_response": {
    "ItemReferenceID": 10093054211,
    "CreatedDate": "2023-12-15T07:51:50.4999859-06:00",
    "ErrorMessages": [],
    "UniqueID": "288497a9-790d-410a-a0be-5914ec289c8b",
    "VerificationResult": 6,
    "AlertMessages": null,
    "AccountVerificationResult": {
      "ResponseCode": 12,
      "BankName": "WELLS FARGO BANK NA (ARIZONA)",
      "AccountAddedDate": "2008-04-09T00:00:00",
      "AccountLastUpdatedDate": "2010-06-23T00:00:00",
      "AccountClosedDate": null,
      "BankAccountType": null,
      "FundsConfirmationResult": null
    },
    "AccountAuthenticationResult": null,
    "PersonIdentificationResult": null,
    "BusinessIdentificationResult": null,
    "WorldSanctionScanResult": null,
    "ESIResult": null,
    "IPAddressResult": null,
    "DomainWhoIsResult": null,
    "MobileResult": null,
    "AccountInsightsResult": null,
    "IdentityScoreResult": null,
    "PhoneVerificationResult": null
  },
  "output_connector_2": "passed",
  "error_2": null,
  "giact_authenticate_response": {
    "ItemReferenceID": 10093054209,
    "CreatedDate": "2023-12-15T07:51:49.8965185-06:00",
    "ErrorMessages": [],
    "UniqueID": "6395f2c3-851d-4558-867a-525685af4a90",
    "VerificationResult": 6,
    "AlertMessages": null,
    "AccountVerificationResult": {
      "ResponseCode": 12,
      "BankName": "WELLS FARGO BANK NA (ARIZONA)",
      "AccountAddedDate": "2008-04-09T00:00:00",
      "AccountLastUpdatedDate": "2010-06-23T00:00:00",
      "AccountClosedDate": null,
      "BankAccountType": null,
      "FundsConfirmationResult": null
    },
    "AccountAuthenticationResult": {
      "ResponseCode": 2,
      "AccountOwnerSigner": 1,
      "VoidedCheckImage": null
    },
    "PersonIdentificationResult": null,
    "BusinessIdentificationResult": null,
    "WorldSanctionScanResult": null,
    "ESIResult": null,
    "IPAddressResult": null,
    "DomainWhoIsResult": null,
    "MobileResult": null,
    "AccountInsightsResult": null,
    "IdentityScoreResult": null,
    "PhoneVerificationResult": null
  },
  "output_connector_3": "passed",
  "error_3": null,
  "qualid_liveness_response": {
    "passiveLivenessResult": {
      "score": 80,
      "livenessAssessment": "Live"
    },
    "facialMatchResult": {
      "score": 91,
      "isMatch": true
    },
    "transactionId": "c94c7c8d-3e7c-4c2c-bddb-c3bdeac5d4a7",
    "timestamp": "2023-12-15T13:51:42"
  },
  "output_connector_4": "match",
  "error_4": null,
  "qualid_idp_response": {
    "error": {},
    "biographic": {
      "birthDate": "",
      "gender": "Unspecified",
      "age": 0,
      "expirationDate": "09/17/2029",
      "firstName": "null",
      "givenName": "DARIA",
      "lastName": "BORSHCHIK",
      "fullName": "DARIA BORSHCHIK"
    },
    "documentClassification": {
      "documentName": "Residence Document",
      "country": "CZE"
    },
    "matchedFields": [
      {
        "description": "The localized version of the document class of the document type",
        "key": "Document Class Name",
        "value": "Residence Document"
      },
      {
        "description": "A number that identifies a document",
        "key": "Document Number",
        "value": "000888119"
      },
      {
        "description": "Date that the document will expire",
        "key": "Expiration Date",
        "value": "09/17/2029"
      },
      {
        "description": "The person's full name (given name plus surname)",
        "key": "Full Name",
        "value": "DARIA BORSHCHIK"
      },
      {
        "description": "The person's given name",
        "key": "Given Name",
        "value": "DARIA"
      },
      {
        "description": "Date that the document was issued",
        "key": "Issue Date",
        "value": "09/19/2019"
      },
      {
        "description": "Authority that issued the document",
        "key": "Issuing Authority",
        "value": "MVČR PRAHA"
      },
      {
        "description": "Abbreviated ID code of the state or country that issued the document",
        "key": "Issuing State Code",
        "value": "CZE"
      },
      {
        "description": "Full name of the state or country that issued the document",
        "key": "Issuing State Name",
        "value": "Czech Republic"
      },
      {
        "description": "The person's surname or family name",
        "key": "Surname",
        "value": "BORSHCHIK"
      }
    ],
    "documentValidationResult": "PASSED",
    "transactionId": "6009d28c-9153-48d2-943d-d199a496c029",
    "timestamp": "2023-12-15T13:51:36",
    "instanceId": "9dcbd621-2098-41f1-94c6-32c9b2002ad4",
    "frontImageMetrics": {
      "glareMetric": 99,
      "sharpnessMetric": 60,
      "horizontalResolution": 600,
      "verticalResolution": 600,
      "isCropped": true,
      "isTampered": false
    },
    "matchedDataFields": [
      {
        "description": "A number that identifies a document",
        "key": "VIZ Document Number",
        "name": "Document Number",
        "type": "string",
        "value": "000888119"
      },
      {
        "description": "Date that the document will expire",
        "key": "VIZ Expiration Date",
        "name": "Expiration Date",
        "type": "datetime",
        "value": "09/17/2029"
      },
      {
        "description": "The person's full name (given name plus surname)",
        "key": "VIZ Full Name",
        "name": "Full Name",
        "type": "string",
        "value": "DARIA BORSHCHIK"
      },
      {
        "description": "The person's given name",
        "key": "VIZ Given Name",
        "name": "Given Name",
        "type": "string",
        "value": "DARIA"
      },
      {
        "description": "Date that the document was issued",
        "key": "VIZ Issue Date",
        "name": "Issue Date",
        "type": "datetime",
        "value": "09/19/2019"
      },
      {
        "description": "Authority that issued the document",
        "key": "VIZ Issuing Authority",
        "name": "Issuing Authority",
        "type": "string",
        "value": "MVČR PRAHA"
      },
      {
        "description": "The person's surname or family name",
        "key": "VIZ Surname",
        "name": "Surname",
        "type": "string",
        "value": "BORSHCHIK"
      },
      {
        "description": "",
        "key": "VIZ Type",
        "name": "VIZ Type",
        "type": "string",
        "value": "TRVALÝ POBYT/PERMANENT RESIDENCE
6* POVOLÍM K POBYTU PRO DLOUHODOBÍ POBÝVAJÍCÍHO REZIDENTA - EU"
      }
    ],
    "tamperCheckStatus": "PASSED",
    "tamperSensitivityLevel": "NORMAL",
    "authenticationTests": [
      {
        "information": "The document type is supported. Verified that the document is recognized as a supported document type and that the type of document can be fully authenticated.",
        "alertActions": "This test may fail if a document cannot be successfully classified as a supported document type.  This may occur if the document is fraudulent as some fraudulent documents differ so much from authentic documents that they will not be recognized as that type of document.  This may also occur if a valid document is significantly worn or damaged or if the document is of a new or different type that is not yet supported by the library.  The document should be examined manually.",
        "key": "Document Classification",
        "result": "PASSED"
      },
      {
        "information": "The document has not expired. Verified that the document expiration date does not occur before the current date.",
        "alertActions": "The expiration date on the document may have been misread.  Confirm that it is legible and occurs on or after the current date.  Also confirm that the current date and time of the host computer is correctly set.",
        "key": "Document Expired",
        "result": "PASSED"
      },
      {
        "information": "No evidence of document tampering was detected. Tested the document for evidence of tampering",
        "alertActions": "Examine the image for any visible indications of tampering, for example, a photo that has been altered or replaced. Request a new image, if possible, to repeat the test.",
        "key": "Document Tampering Detection",
        "modelName": "Physical Document Presence V5 (Beta)",
        "result": "PASSED"
      },
      {
        "information": "No evidence of document tampering was detected. Tested the document for evidence of tampering",
        "alertActions": "Examine the image for any visible indications of tampering, for example, a photo that has been altered or replaced. Request a new image, if possible, to repeat the test.",
        "key": "Document Tampering Detection",
        "modelName": "Physical Document Presence V2.5",
        "result": "PASSED"
      },
      {
        "information": "No evidence of document tampering was detected. Tested the document for evidence of tampering",
        "alertActions": "Examine the image for any visible indications of tampering, for example, a photo that has been altered or replaced. Request a new image, if possible, to repeat the test.",
        "key": "Document Tampering Detection",
        "modelName": "Text Tampering Detection V1.2.1",
        "result": "PASSED",
        "regions": [
          {
            "documentElement": "DATA",
            "regionName": "Document Number",
            "regionArea": {
              "height": 128,
              "width": 499,
              "x": 1502,
              "y": 49
            }
          },
          {
            "documentElement": "DATA",
            "regionName": "Expiration Date",
            "regionArea": {
              "height": 97,
              "width": 393,
              "x": 709,
              "y": 468
            }
          },
          {
            "documentElement": "DATA",
            "regionName": "Given Name",
            "regionArea": {
              "height": 88,
              "width": 1292,
              "x": 709,
              "y": 347
            }
          },
          {
            "documentElement": "DATA",
            "regionName": "Surname",
            "regionArea": {
              "height": 90,
              "width": 1292,
              "x": 709,
              "y": 265
            }
          }
        ]
      },
      {
        "information": "No evidence of document tampering was detected. Tested the document for evidence of tampering",
        "alertActions": "Examine the image for any visible indications of tampering, for example, a photo that has been altered or replaced. Request a new image, if possible, to repeat the test.",
        "key": "Document Tampering Detection",
        "modelName": "Text Tampering Detection V2 (Beta)",
        "result": "PASSED"
      },
      {
        "information": "The issue date is valid. Verified that the document issue date is valid, in the expected format, does not occur in the future, does not occur before the date of birth, and does not occur after the expiration date.",
        "alertActions": "The issue date on the document may have been misread.  Confirm that all of the dates are legible, the issue date occurs on or before the current date, and is before the expiration date.",
        "key": "Issue Date Valid",
        "result": "PASSED"
      },
      {
        "information": "The series has not expired. Verified that the document type is still in circulation, and that not all documents of this type have expired.",
        "alertActions": "The document might have been misclassified; confirm that the document is a supported type. If the document does not indicate that it is expired, verify that the expiration date has not been altered. If you accept expired documents, thoroughly consider whether to accept this type because it might have fewer effective security features than a document type that is still in circulation.",
        "key": "Series Expired",
        "result": "PASSED"
      },
      {
        "information": "A visible pattern was found. Verified that a security feature in the visible spectrum is present and in an expected location on the document.",
        "alertActions": "Check the visible (white) document image to verify the presence of the security feature.  Possible reasons this test may fail for a valid document may be that the document was moving during the capture, or the document may be excessively worn or damaged.",
        "key": "Visible Pattern",
        "result": "PASSED",
        "regions": [
          {
            "documentElement": "SUBSTRATE",
            "regionName": "Comments Label",
            "regionArea": {
              "height": 75,
              "width": 201,
              "x": 701,
              "y": 889
            }
          }
        ]
      },
      {
        "information": "A visible pattern was found. Verified that a security feature in the visible spectrum is present and in an expected location on the document.",
        "alertActions": "Check the visible (white) document image to verify the presence of the security feature.  Possible reasons this test may fail for a valid document may be that the document was moving during the capture, or the document may be excessively worn or damaged.",
        "key": "Visible Pattern",
        "result": "PASSED",
        "regions": [
          {
            "documentElement": "SUBSTRATE",
            "regionName": "CZE Header",
            "regionArea": {
              "height": 174,
              "width": 354,
              "x": 65,
              "y": 29
            }
          }
        ]
      },
      {
        "information": "A visible pattern was found. Verified that a security feature in the visible spectrum is present and in an expected location on the document.",
        "alertActions": "Check the visible (white) document image to verify the presence of the security feature.  Possible reasons this test may fail for a valid document may be that the document was moving during the capture, or the document may be excessively worn or damaged.",
        "key": "Visible Pattern",
        "result": "PASSED",
        "regions": [
          {
            "documentElement": "SUBSTRATE",
            "regionName": "EU Bull",
            "regionArea": {
              "height": 413,
              "width": 753,
              "x": 21,
              "y": 135
            }
          }
        ]
      },
      {
        "information": "A visible pattern was found. Verified that a security feature in the visible spectrum is present and in an expected location on the document.",
        "alertActions": "Check the visible (white) document image to verify the presence of the security feature.  Possible reasons this test may fail for a valid document may be that the document was moving during the capture, or the document may be excessively worn or damaged.",
        "key": "Visible Pattern",
        "result": "PASSED",
        "regions": [
          {
            "documentElement": "SUBSTRATE",
            "regionName": "Czech Coat of Arms",
            "regionArea": {
              "height": 629,
              "width": 568,
              "x": 1433,
              "y": 62
            }
          }
        ]
      },
      {
        "information": "Tampering Check",
        "key": "Tampering Check",
        "result": "PASSED"
      }
    ],
    "isBackSide": false
  },
  "output_connector_5": "passed",
  "error_5": null,
  "qualid_idv_response": null,
  "output_connector_6": "error",
  "error_6": {
    "errors": [
      {
        "type": "com.zenoo.hub.dsl.validation.ValidationMessageError",
        "message": "Required"
      }
    ]
  },
  "worldcheck_response": {
    "caseLink": "https://worldcheck.refinitiv.com/#fsp/case/5jb6eg91wkak1i99bq277th4d/view/worldcheck",
    "caseId": "5jb6eg91wkak1i99bq277th4c",
    "name": "jane doe",
    "providerTypes": [
      "WATCHLIST"
    ],
    "customFields": [],
    "secondaryFields": [
      {
        "typeId": "SFCT_3",
        "value": "USA",
        "dateTimeValue": null
      }
    ],
    "groupId": "5jb69ekr1m1p1fjwll13yd9l8",
    "entityType": "INDIVIDUAL",
    "caseSystemId": "5jb6eg91wkak1i99bq277th4d",
    "caseScreeningState": {
      "WATCHLIST": "INITIAL"
    },
    "lifecycleState": "UNARCHIVED",
    "creator": {
      "userId": "5jb69ekr1m1p1fjwll902thk3",
      "firstName": "Jan",
      "lastName": "Zajic",
      "fullName": "Jan Zajic",
      "email": "[email protected]",
      "status": "ACTIVE"
    },
    "modifier": {
      "userId": "5jb69ekr1m1p1fjwll902thk3",
      "firstName": "Jan",
      "lastName": "Zajic",
      "fullName": "Jan Zajic",
      "email": "[email protected]",
      "status": "ACTIVE"
    },
    "assignee": null,
    "creationDate": "2023-12-15T13:51:33.506Z",
    "modificationDate": "2023-12-15T13:51:36.009Z",
    "nameTransposition": false,
    "outstandingActions": true,
    "lastScreenedDatesByProviderType": {
      "WATCHLIST": "2023-12-15T13:51:36.009Z"
    },
    "results": [
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha1n",
        "referenceId": "e_tr_wci_1183468",
        "matchScore": 100,
        "matchStrength": "EXACT",
        "matchedTerm": "Jane Doe",
        "matchedTerms": [
          {
            "term": "Jane Doe",
            "type": "LOW_QUALITY_AKA"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "LOW_QUALITY_AKA",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "USA",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "USA",
            "matchedDateTimeValue": null,
            "fieldResult": "MATCHED"
          }
        ],
        "sources": [
          "b_trwc_418",
          "b_trwc_419",
          "b_trwc_M:1TF",
          "b_trwc_M:1RY",
          "b_trwc_M:DD",
          "b_trwc_M:1SK"
        ],
        "categories": [
          "Law Enforcement",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2022-09-02T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Marcela BENITEZ SALCIDO",
        "events": [
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1972",
            "month": null,
            "type": "BIRTH",
            "year": 1972
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1973",
            "month": null,
            "type": "BIRTH",
            "year": 1973
          }
        ],
        "countryLinks": [
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "NATIONALITY"
          },
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "LOCATION"
          }
        ],
        "identityDocuments": [],
        "category": "CRIME - NARCOTICS",
        "providerType": "WATCHLIST",
        "gender": "FEMALE",
        "entityCreationDate": "2009-12-21T00:00:00.000Z",
        "entityModificationDate": "2022-09-02T00:00:00.000Z",
        "actionTypes": []
      },
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha1v",
        "referenceId": "e_tr_wci_169723",
        "matchScore": 100,
        "matchStrength": "EXACT",
        "matchedTerm": "DOE,Jane",
        "matchedTerms": [
          {
            "term": "DOE,Jane",
            "type": "AKA"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "AKA",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "USA",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "USA",
            "matchedDateTimeValue": null,
            "fieldResult": "MATCHED"
          }
        ],
        "sources": [
          "b_trwc_M:1S0",
          "b_trwc_419",
          "b_trwc_362",
          "b_trwc_M:FC",
          "b_trwc_M:DD",
          "b_trwc_M:1RZ"
        ],
        "categories": [
          "Law Enforcement",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2022-09-02T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Lottie Mae STANLEY",
        "events": [
          {
            "address": null,
            "allegedAddresses": [],
            "day": 25,
            "fullDate": "1952-05-25",
            "month": 5,
            "type": "BIRTH",
            "year": 1952
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": 25,
            "fullDate": "1951-05-25",
            "month": 5,
            "type": "BIRTH",
            "year": 1951
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": 21,
            "fullDate": "1954-05-21",
            "month": 5,
            "type": "BIRTH",
            "year": 1954
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": 25,
            "fullDate": "1954-05-25",
            "month": 5,
            "type": "BIRTH",
            "year": 1954
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": 8,
            "fullDate": "1958-01-08",
            "month": 1,
            "type": "BIRTH",
            "year": 1958
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": 25,
            "fullDate": "1958-05-25",
            "month": 5,
            "type": "BIRTH",
            "year": 1958
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": 27,
            "fullDate": "1962-01-27",
            "month": 1,
            "type": "BIRTH",
            "year": 1962
          }
        ],
        "countryLinks": [
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "NATIONALITY"
          },
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "LOCATION"
          }
        ],
        "identityDocuments": [],
        "category": "CRIME - FINANCIAL",
        "providerType": "WATCHLIST",
        "gender": "FEMALE",
        "entityCreationDate": "2003-07-11T00:00:00.000Z",
        "entityModificationDate": "2022-09-02T00:00:00.000Z",
        "actionTypes": []
      },
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha17",
        "referenceId": "e_tr_wci_1950554",
        "matchScore": 100,
        "matchStrength": "EXACT",
        "matchedTerm": "DOE,Jane",
        "matchedTerms": [
          {
            "term": "DOE,Jane",
            "type": "AKA"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "AKA",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "USA",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "USA",
            "matchedDateTimeValue": null,
            "fieldResult": "MATCHED"
          }
        ],
        "sources": [
          "b_trwc_M:1UM",
          "b_trwc_457"
        ],
        "categories": [
          "Law Enforcement",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2022-11-09T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Diamond L ROBLES",
        "events": [
          {
            "address": null,
            "allegedAddresses": [],
            "day": 23,
            "fullDate": "1981-02-23",
            "month": 2,
            "type": "BIRTH",
            "year": 1981
          }
        ],
        "countryLinks": [
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "NATIONALITY"
          },
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "LOCATION"
          }
        ],
        "identityDocuments": [],
        "category": "INDIVIDUAL",
        "providerType": "WATCHLIST",
        "gender": "FEMALE",
        "entityCreationDate": "2013-02-01T00:00:00.000Z",
        "entityModificationDate": "2022-11-09T00:00:00.000Z",
        "actionTypes": []
      },
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha1j",
        "referenceId": "e_tr_wci_1816504",
        "matchScore": 100,
        "matchStrength": "EXACT",
        "matchedTerm": "DOE,Jane",
        "matchedTerms": [
          {
            "term": "DOE,Jane",
            "type": "AKA"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "AKA",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "USA",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "USA",
            "matchedDateTimeValue": null,
            "fieldResult": "MATCHED"
          }
        ],
        "sources": [
          "b_trwc_419",
          "b_trwc_362",
          "b_trwc_M:1RZ"
        ],
        "categories": [
          "Law Enforcement",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2022-03-20T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Lina LANHAM",
        "events": [],
        "countryLinks": [
          {
            "country": {
              "code": "ZZZ",
              "name": "UNKNOWN"
            },
            "countryText": "UNKNOWN",
            "type": "NATIONALITY"
          },
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "LOCATION"
          }
        ],
        "identityDocuments": [],
        "category": "CRIME - OTHER",
        "providerType": "WATCHLIST",
        "gender": "FEMALE",
        "entityCreationDate": "2012-08-12T00:00:00.000Z",
        "entityModificationDate": "2022-03-20T00:00:00.000Z",
        "actionTypes": []
      },
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha1b",
        "referenceId": "e_tr_wci_817357",
        "matchScore": 100,
        "matchStrength": "EXACT",
        "matchedTerm": "DOE,Jane",
        "matchedTerms": [
          {
            "term": "DOE,Jane",
            "type": "AKA"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "AKA",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "USA",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "USA",
            "matchedDateTimeValue": null,
            "fieldResult": "MATCHED"
          }
        ],
        "sources": [
          "b_trwc_419",
          "b_trwc_M:1RZ"
        ],
        "categories": [
          "Law Enforcement",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2023-05-26T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Maria Elena MARTINEZ DE RIOS",
        "events": [
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1974",
            "month": null,
            "type": "BIRTH",
            "year": 1974
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1975",
            "month": null,
            "type": "BIRTH",
            "year": 1975
          }
        ],
        "countryLinks": [
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "NATIONALITY"
          },
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "LOCATION"
          }
        ],
        "identityDocuments": [],
        "category": "INDIVIDUAL",
        "providerType": "WATCHLIST",
        "gender": "FEMALE",
        "entityCreationDate": "2008-03-06T00:00:00.000Z",
        "entityModificationDate": "2023-05-26T00:00:00.000Z",
        "actionTypes": []
      },
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha1f",
        "referenceId": "e_tr_wci_1520255",
        "matchScore": 100,
        "matchStrength": "EXACT",
        "matchedTerm": "Jane Doe",
        "matchedTerms": [
          {
            "term": "Jane Doe",
            "type": "LOW_QUALITY_AKA"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "LOW_QUALITY_AKA",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "USA",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "USA",
            "matchedDateTimeValue": null,
            "fieldResult": "MATCHED"
          }
        ],
        "sources": [
          "b_trwc_419",
          "b_trwc_M:1RZ"
        ],
        "categories": [
          "Law Enforcement",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2023-03-09T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Maria Luisa MENDOZA",
        "events": [
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1960",
            "month": null,
            "type": "BIRTH",
            "year": 1960
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1961",
            "month": null,
            "type": "BIRTH",
            "year": 1961
          }
        ],
        "countryLinks": [
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "NATIONALITY"
          },
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "LOCATION"
          }
        ],
        "identityDocuments": [],
        "category": "INDIVIDUAL",
        "providerType": "WATCHLIST",
        "gender": "FEMALE",
        "entityCreationDate": "2011-06-14T00:00:00.000Z",
        "entityModificationDate": "2023-03-09T00:00:00.000Z",
        "actionTypes": []
      },
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha1r",
        "referenceId": "e_tr_wci_1222559",
        "matchScore": 100,
        "matchStrength": "EXACT",
        "matchedTerm": "DOE,Jane",
        "matchedTerms": [
          {
            "term": "DOE,Jane",
            "type": "AKA"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "AKA",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "USA",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "USA",
            "matchedDateTimeValue": null,
            "fieldResult": "MATCHED"
          }
        ],
        "sources": [
          "b_trwc_419",
          "b_trwc_362",
          "b_trwc_M:1TF",
          "b_trwc_M:1RY",
          "b_trwc_M:1SK"
        ],
        "categories": [
          "Law Enforcement",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2022-05-07T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Jose Ismael TORRES ROJAS",
        "events": [
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1991",
            "month": null,
            "type": "BIRTH",
            "year": 1991
          },
          {
            "address": null,
            "allegedAddresses": [],
            "day": null,
            "fullDate": "1992",
            "month": null,
            "type": "BIRTH",
            "year": 1992
          }
        ],
        "countryLinks": [
          {
            "country": {
              "code": "MEX",
              "name": "MEXICO"
            },
            "countryText": "MEXICO",
            "type": "LOCATION"
          },
          {
            "country": {
              "code": "MEX",
              "name": "MEXICO"
            },
            "countryText": "MEXICO",
            "type": "NATIONALITY"
          },
          {
            "country": {
              "code": "USA",
              "name": "UNITED STATES"
            },
            "countryText": "USA",
            "type": "LOCATION"
          }
        ],
        "identityDocuments": [],
        "category": "INDIVIDUAL",
        "providerType": "WATCHLIST",
        "gender": "MALE",
        "entityCreationDate": "2010-03-10T00:00:00.000Z",
        "entityModificationDate": "2022-05-07T00:00:00.000Z",
        "actionTypes": []
      },
      {
        "resultId": "5jb6qq7z4wnb1i99bq65eha1z",
        "referenceId": "e_tr_wci_2960783",
        "matchScore": 94.87,
        "matchStrength": "STRONG",
        "matchedTerm": "Janet DOE",
        "matchedTerms": [
          {
            "term": "Janet DOE",
            "type": "PRIMARY"
          }
        ],
        "submittedTerm": "jane doe",
        "matchedNameType": "PRIMARY",
        "secondaryFieldResults": [
          {
            "field": {
              "typeId": "SFCT_3",
              "value": "LBR",
              "dateTimeValue": null
            },
            "typeId": "SFCT_3",
            "submittedValue": "USA",
            "submittedDateTimeValue": null,
            "matchedValue": "LBR",
            "matchedDateTimeValue": null,
            "fieldResult": "NOT_MATCHED"
          }
        ],
        "sources": [
          "b_trwc_M:1U7",
          "b_trwc_M:1TF",
          "b_trwc_4"
        ],
        "categories": [
          "Other Bodies",
          "Special Interest Categories"
        ],
        "creationDate": "2023-12-15T13:51:36.010Z",
        "modificationDate": "2023-12-15T13:51:36.010Z",
        "lastAlertDate": "2023-12-15T13:51:36.010Z",
        "resolution": null,
        "resultReview": {
          "reviewRequired": false,
          "reviewRequiredDate": "2022-06-11T00:00:00.000Z",
          "reviewRemark": null,
          "reviewDate": null
        },
        "primaryName": "Janet DOE",
        "events": [],
        "countryLinks": [
          {
            "country": {
              "code": "LBR",
              "name": "LIBERIA"
            },
            "countryText": "LIBERIA",
            "type": "LOCATION"
          },
          {
            "country": {
              "code": "LBR",
              "name": "LIBERIA"
            },
            "countryText": "LIBERIA",
            "type": "NATIONALITY"
          }
        ],
        "identityDocuments": [],
        "category": "INDIVIDUAL",
        "providerType": "WATCHLIST",
        "gender": "FEMALE",
        "entityCreationDate": "2018-08-27T00:00:00.000Z",
        "entityModificationDate": "2022-06-11T00:00:00.000Z",
        "actionTypes": []
      }
    ]
  },
  "output_connector_7": "found",
  "error_7": null,
  "selfie": {
    "url": null
  },
  "id_front": {
    "url": null
  },
  "location": "[formattedAddress:1923 Lake Forest Rd, Grapevine, TX 76051, USA, authorization:null, locality:Grapevine, sublocality:null, neighborhood:null, area1:Texas, area2:Tarrant County, area3:null, area4:null, area1Code:TX, area2Code:Tarrant County, area3Code:null, area4Code:null, areas:[Texas, Tarrant County], street:Lake Forest Road, postalCode:76051, postalTown:null, country:United States, countryCode:US, premise:null, streetNumber:1923, placeId:ChIJoy_O7FPTTYYRlWmWSjdq1uo, lat:32.9738299, lng:-97.09695479999999]",
  "address": "1923 Lake Forest Road",
  "state": "Texas",
  "city": "Grapevine",
  "postal_code": "76051",
  "country": "US",
  "mobile": "+1-9725551212",
  "bank": "0000000016",
  "banknumber": "122105278",
  "first_name": "jane",
  "last_name": "doe",
  "date_of_birth": "1975-10-09"
}

By following these steps, you can seamlessly initiate orchestrated workflows, collect results, and enhance your automation capabilities with Zenoo's API integration feature. Say goodbye to the complexity of managing multiple APIs yourself and enjoy the convenience of centralized orchestration and data retrieval.