Watchlist - DMF Search

Submit the search for the DMF check

Credit Message Error
- {"code": "credit_message", "message": "Credit limit reached! For assistance, please contact the support"}

Request and Response Object Structures.

{
  "ssn":string,
  "firstname":string,
  "lastname":string,
  "dateofbirth":string,
  "dateofdeath":string,
  "yearofbirth":string,
  "yearofdeath":string
}
{
    "success_message": string,
    "data": {
        "id": integer,
        "created_by_user":string,
        "name": string,
        "status": string,
	      "crawler_count": integer,
        "created_at": string,
        "updated_at": string,
        "is_cleared": boolean,
  	    "request_data": {
            "ssn":string,
            "firstname":string,
            "lastname":string,
            "dateofbirth":string,
            "dateofdeath":string,
            "yearofbirth":string,
            "yearofdeath":string
          }
    },
    "success": boolean
}

Sample Requests and Responses.

{
  "ssn":"XXXX3463",
}
{
    "success_message": "Record found",
    "pagination": {
        "total_records": 1,
        "count": 1,
        "page_size": 10,
        "total_pages": 1,
        "current_page": 1,
        "order": "desc"
    },
    "data": {
        "id": 591,
        "created_by": "compliancely",
        "source": "dmf",
        "status": "Found",
        "created_at": "2023-09-17T07:27:56.564332Z",
        "updated_at": "2023-09-17T08:23:09.410621Z",
        "request_data": {
            "ssn": "XXXX3463",
            "lastname": "",
            "firstname": "",
            "dateofbirth": "",
            "dateofdeath": "",
            "yearofbirth": "",
            "yearofdeath": ""
        },
        "results": [
            {
                "id": 98070,
                "ssn": "XXXXX3463",
                "fullname": "MXXX XXXHUK",
                "dateofbirth": "09-06-1893",
                "dateofdeath": "03-00-1979"
            }
        ]
    },
    "success": true
}
{
    "errors": [
        {
            "code": "fielderror",
            "message": "ssn or firstname is required"
        }
    ],
    "data": null,
    "success": false
}
{
    "detail": "Authentication credentials were not provided."
}
{
    "errors": [
        {
            "code": "credit_message",
            "message": [
                "Credit limit reached! For assistance, please contact the support"
            ]
        }
    ],
    "data": null,
    "success": false
}
{
    "detail": "Invalid token."
}
Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!