Tutelar API Stack
  • Introduction
  • Fraud Detection Monitoring
    • Create Transaction
    • Notify Transaction
    • Chargeback Transaction
    • Refund Transaction
  • MERCHANT ONBOARDING
    • Client Types
    • Entity Types
    • MCC Lists
    • Reseller Lists
    • Onboarding
    • Onboarding - KYC
    • Onboarding - Web Crawling
    • Onboarding - AML
    • Onboarding - NDI
  • KYC Verification
    • Document Verification
      • 🇮🇳India
        • Aadhaar Card
        • Pan Card
        • Driving License
        • GST Number
        • Passport
        • Shop License
        • FSSAI
        • MCA
        • Voter Id
        • Pan Gst Link
        • ROC IEC
        • DIN
        • Udyam Aadhaar
        • Pan Card Comprehensive
        • Name Compare
        • GST Advanced
        • Aadhar with Otp
        • Phone Name Attributes
        • Pan Card Lite
    • Document Extraction
      • 🇮🇳India
        • Aadhaar Card
        • Pan Card
        • Driving License
        • Voter Id
        • GST Certificate
        • Passport
    • Assets Verification
      • 🇮🇳India
        • Bank Account
        • Bank Verfication Pennyless
        • Bank Account Details Using VPA
        • Mobile to UPI Advance
        • Mobile to UPI Basic
        • Mobile To UAN
        • E-Challan Details
        • Vehicle RC Lite
        • Vehicle RC
        • UAN Advance
    • Face and Document Verification
      • Onsite Verification
      • Face Match
      • Selfie Validation
  • DATA REPOSITORY
    • Search API
  • Business Profile
    • Lookups
      • Email
      • Phone
      • BIN
      • IP
    • Credibility Check
    • Corporate Check
      • Comprehensive Details
    • AML And PEP
    • Court And FIR
    • Cybersafe
  • AML SEARCH
    • Search
    • Search Details
    • Search Details PDF
    • Decision Making
    • Decision Details
  • WEB CRAWLING
    • Initiate Crawl API
    • Status Check API
    • Result API
    • List API
  • Disputes
    • Create Dispute
    • Update Dispute
    • Dispute Details
    • Dispute Level Change
    • Dispute Won
    • Dispute Loss
    • Dispute Reopen
  • MOBILE SDK INTEGRATIONS
    • Android SDK
    • Flutter SDK
    • iOS SDK
  • CLIENT SIDE INTEGRATIONS
    • Javascript Integration
    • Tutelar Error Code
Powered by GitBook
On this page
  • Onboarding - AML
  • Post parameters description is given below
  • Sample Post Parameters
  1. MERCHANT ONBOARDING

Onboarding - AML

Onboarding refers to the process of bringing a new merchant or business onto a payment processing platform or network. It typically involves gathering information about the merchant such as Business name, Client type, Entity type, Address, Bank details and so on. With the help of onboarding , we can conclude whether the merchants are legitimate, financially stable, and pose an acceptable level of risk to the payment platform.

Onboarding - AML

POST https://secctrl.tutelar.io/api/v1/onboarding-protect/aml

Post parameters description is given below

Parameter
Type
Is Mandatory
Description

merchant_ref_id

String

Yes

It should be unique. It helps to identify the new merchant that comes from which client.

email

String

Yes

phone

String

Yes

name

String

Yes

reseller_trade_name

String

No

entity_type

Object

Yes

client_type

Object

No

mcc

Object

Yes

aml

Object

Yes

business

Object

Optional Except (name and address)

If field verification is purchased, address field is mandatory

is_field_verify

Boolean

Optional

is_aml_enabled

Boolean

Yes

Sample Post Parameters

{
    "merchant_ref_id": "TUTMALA00004",
    "email": "gowtham@gmail.com",
    "phone": "8710308721",
    "name": "Gowtham",
    "reseller_trade_name": "Deepak Trade",
    "client_type": {
        "code": "O96ty9TSb",
        "name": "Airlines"
    },
    "entity_type": {
        "code": "Vmtpxzpct",
        "name": "Public Limited"
    },
    "business": {
        "name": "Tutelar",
        "pan": "ABCDE6689E",
        "address": "CHENNAI",
        "postal_code": "600024",
        "gst": "33AAHCP1478L1Z6",
        "city": "Chennai",
        "state": "Tamilnadu",
        "country": "India",
        "authorized": {
            "signatory_1": "syed",
            "signatory_2": "",
            "signatory_3": ""
        }
    },
    "mcc": {
        "mcc_id": "2zYroPJ75",
        "mcc_code": "1520",
        "mcc_desc": "General Contractors – Residential and Commercial",
        "risk_type": "low"
    },
    "aml": {
        "date_of_birth": "22-01-1993",
        "date_of_registration": "01-03-1990",
        "nationality": "Indian"
    },
    "is_field_verify": false,
    "is_aml_enabled": true
}
{
  "success": true,
  "message": "Merchant created successfully",
  "data": {
    "merchant_ref_id": "TUTMALA00004",
    "email": "gowtham@gmail.com",
    "phone": "8710308721",
    "name": "Gowtham",
    "reseller_trade_name": "Deepak Trade",
    "client_type": {
      "code": "O96ty9TSb",
      "name": "Airlines"
    },
    "entity_type": {
      "code": "Vmtpxzpct",
      "name": "Public Limited"
    },
    "business": {
      "name": "Tutelar",
      "pan": "ABCDE6689E",
      "address": "CHENNAI",
      "postal_code": "600024",
      "gst": "33AAHCP1478L1Z6",
      "city": "Chennai",
      "state": "Tamilnadu",
      "country": {
        "countryId": "O1LJd6sV",
        "countryName": "India",
        "threeDigtCode": "IND",
        "flag": "in",
        "emoji": "🇮🇳"
      }
    },
    "mcc": {},
    "aml": {
        "date_of_birth": "22-01-1993",
        "date_of_registration": "01-03-1990",
        "nationality": "Indian"
    },
    "is_field_verify": true
  }
}
{
    "message": "Invalid authentication credentials"
}
{
    "success": false,
    "message": "AML product not subscribed!",
    "code": "failure"
}

{
    "success": false,
    "message": "Merchant reference id already exist",
    "code": "failure"
}

{
    "success": false,
    "message": "Aml should not be empty",
    "code": "failure"
}
PreviousOnboarding - Web CrawlingNextOnboarding - NDI

Last updated 11 months ago