1curl -X POST 'https://api.budpay.com/api/v2/customer/bulk_create' \2 -H 'Content-Type: application/json' \3 -H 'Authorization: Bearer YOUR_SECRET_KEY' \4 -d '{5 "customers": [6 {7 "email": "customer1@example.com",8 "first_name": "John",9 "last_name": "Doe",10 "phone": "07036218209"11 },12 {13 "email": "customer2@example.com",14 "first_name": "Jane",15 "last_name": "Smith",16 "phone": "07036218210"17 }18 ]19}'{ "status": true, "message": "Customers processed", "data": { "batchid": "65c1368420424", "totalSubmitted": 3, "totalCreated": 3, "totalSkipped": 0, "domain": "test" }}