Table of contents

Create Contact

Use this API to create and save a new contact with relevant details like bank account number, IFSC, UPI ID, name, mobile number, and identifier tags.

API URL: https://api.bulkpe.in/client/createContact

Method: POST

Auth: Please refer to the Authorization page.

{ "reference": "Test0000111", //unique id "name": "TestSathya", //contactName "type": "account_number", //account_number, vpa "bank_account_number": "13232323232", //conditional "bank_ifsc_code": "UTIB0CCH274", //conditional "vpa": "", ////conditional - only for VPA //below params are optional "email": "[email protected]", "phone": "", "bank_name": "" }

Response

{ "status": true, "statusCode": 200, "data": { "contact_id": "BENEF30789", "reference": "test0002323", "type": "account_number", "name": "TestSathya", "email": "[email protected]", "phone": "", "bank_account_number": "132323232323", "bank_name": "", "bank_ifsc_code": "UTIB0CCH274", "vpa": "", "createdAt": "2025-07-03T10:40:14.494Z" }, "message": "contact created" }