Querying the API
We need some test data in order to test our service, so let's create the contacts.json
file in the data
directory of our project:
{ "result": [{ "firstname": "Joe", "lastname": "Smith", "title": "Mr.", "company": "Dev Inc.", "jobtitle": "Developer", "primarycontactnumber": "+359777123456", "othercontactnumbers": [ "+359777456789", "+359777112233" ], "primaryemailaddress": "joe.smith@xyz.com", "emailaddresses": [ "j.smith@xyz.com" ], "groups": [ "Dev", "Family" ] }, { "firstname": "John", "lastname":...