Mock APIs Message Queues and Databases in One Place
Learn from system design expert Raul Junco as he walks through automating API, message queue, and database mocking with HyperTest for efficient testing.
var new_contact = {
"First name": "John", //Replace with first name of the user
"Last name": "Doe", //Replace with last name of the user
"Email": "john.doe@example.com", //Replace with email of the user
"Alternate contact number": "98765432", //Replace with a custom field
"company": {
"Name": "Example.com", //Replace with company name
"Website": "www.example.com" //Replace with website of company
}
};
var identifier = "john.doe@example.com";
fwcrm.identify(identifier, new_contact);