...

/

Solution: API Calls with curl

Solution: API Calls with curl

Let's try to make API calls with curl to save responses to the disk.

We'll cover the following...

Solution

The challenge was to use the curl command-line tool to pull a series of responses from three related services (Company, Account, and Activity) and save them to the disk for later reference.

  1. First, move to the folder called services.

  2. Modify the API name in line-2 of index.js file. Currently, we have written ./company-home. You can update it to any filename that is provided in the same services ...