Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit a5b2551

Browse files
author
steveAnon
committed
Misc. proofreading changes and issues
1 parent 21346e2 commit a5b2551

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

guides/m2devgde/v1.0.0.0/rest/rest-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ title: Accessing Magento Objects Using REST
99

1010
<h2 id="rest-call">How to Make a REST Call</h2>
1111

12-
All REST calls for the Customer service are contained in `webapi.xml`; however, inputs and return values are defined in their respective service interfaces.
12+
Most REST calls for the Customer service are contained in the module's `webapi.xml`; however, inputs and return values are defined in their respective service interfaces.
1313

1414
To make a REST call for the Customer service:
1515

1616
<h3 id="rest-call-step1">Step 1: Look up the call in webapi.xml:</h3>
1717

1818
This section uses as an example how to make an HTTP GET call to the getCustomer method.
1919

20-
1. Open `webapi.xml`.
20+
1. Open `webapi.xml` in a text editor.
2121

2222
2. Find the desired call; for example,
2323

@@ -28,7 +28,7 @@ This section uses as an example how to make an HTTP GET call to the getCustomer
2828

2929
3. The route url specifies the URL of the REST call.
3030

31-
In this example, `GET /V1/customerAccounts/:customerId/customer`
31+
In this example, `GET /V1/customerAccounts/:customerID/customer`
3232

3333
*Note*: Any value prefixed by a colon character is a required input. In the preceding example, `:customerId` indicates you must provide the customer ID.
3434

@@ -49,4 +49,4 @@ In this case, the return object is Customer.php.
4949
* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/what-is-svc.html">What is the Magento 2 Service Framework?</a>
5050
* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/svc-how-to-use.html">How a Client Uses a Service</a>
5151
* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/build-svc.html">Basics of Building a Service</a>
52-
* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.html">What Is the Web API Framework?</a>
52+
* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.html">What Is the Web API Framework?</a>
File renamed without changes.

0 commit comments

Comments
 (0)