Create multiple customers in a single batch request. Each customer is processed independently with detailed individual results.
customers field:
customers array follows the same schema as the single customer endpoint:
Required Fields:
id - External customer reference IDfirstName - Customer’s first name (required)lastName - Customer’s last name (required)phoneNumber - Customer’s phone number (required) - Used for automated calling and SMS communicationstimezone - Customer’s timezone as an IANA timezone name (e.g., “America/New_York”, “America/Los_Angeles”, “America/Chicago”) (required) - Required for TCPA compliance to ensure calls are made during appropriate hours. Must be a valid IANA timezone identifier.taskType - Task type for customer’s call schedule (required) - Valid task types depend on your company configuration. If an invalid task type is provided for your company, the API will return a 400 Bad Request error with a list of valid task types.streetAddress1 - Street address line 1 (required)city - City name (required)state - State code (e.g., “NY”, “CA”) (required)zipCode - ZIP/postal code (required)email - Customer email addressbirthday - Customer birthday (YYYY-MM-DD format)ssnLastFour - Last 4 digits of SSNstreetAddress2 - Street address line 2doNotCall - Whether to mark customer for Do Not Call (default: false)test - Mark customer as test customer (default: false)externalMetadata - Custom JSON object with additional customer datatrue if ALL customers were created successfully, false if any failednull if failedsuccess field is true only if all customers succeededresults array in the response to see which customers succeeded and which failed.
Batch of customer records
Array of customer records to create
Batch processing completed (may include partial failures - check individual results)
True if ALL customers were created successfully, false if any failed
true
Total number of customers in the batch
2
Number of successfully created customers
2
Number of failed customer creations
0
Individual results for each customer