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": "[email protected]", "emailaddresses": [ "[email protected]" ], "groups": [ "Dev", "Family" ] }, { "firstname": "John", "lastname": "Douglas", "title": "Mr.", "company": "Dev Inc.", "jobtitle": "Developer", "primarycontactnumber...