Skip to content

Commit 49761e8

Browse files
jneiman08182017 for staging
1 parent 56212ff commit 49761e8

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.DS_Store

-8 KB
Binary file not shown.

labs/coding-101-rest-basics-ga/1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
In this Learning Lab, you will learn the basics of consuming a REST API, and how to use POSTMAN to explore a REST API.
55

66

7-
## Objective ##
7+
## Objective
88

99
Completion Time: 20 minutes
1010

labs/coding-101-rest-basics-ga/2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RESTful interfaces often offer the CRUD (Create, Update, Delete) operations.
1313
If you want to know more about REST in general, this is a great <a href="http://rest.elkstein.org" target="_blank">REST tutorial</a>.
1414

1515

16-
### What is so great about REST?
16+
### What are the benefits of REST?
1717

1818
***REST is easy to use on any platform***
1919

labs/coding-101-rest-basics-ga/3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The steps for using the APIC-EM authentication token are:
4040
2. A ticket (token) is returned in response body.
4141
3. Include this token in the 'X-Auth-Token' header on all subsequent requests.
4242

43-
### Using the API Reference Documentation ###
43+
### Using the API Reference Documentation
4444

4545
The API Reference Documentation is where you can find the list of all of the API methods and the details for how to make each request. When you are starting to work with a new API,
4646
the API Reference is one of the most important sources of information.
@@ -58,7 +58,7 @@ Let's take a look at the Ticket API in APIC-EM.
5858
* On ticket, click **'POST' /ticket**. This endpoint provides functionality to create a ticket.
5959
![](/posts/files/coding-101-rest-basics-ga/assets/images/refguide3.png)
6060

61-
### What is in the Response? ###
61+
### What is in the Response?
6262

6363
The API Reference includes information data attributes to be sent and returned. The returned data is defined in the Response portion which includes the HTTP status codes along with the data format and attributes to be returned.
6464

labs/coding-101-rest-basics-ga/5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ You may need to accept the SSL certificate before calling the APIs in Postman. I
5252
* The **JSON** response contains a **serviceTicket** attribute. We've highlighted an example service ticket value. The actual value will be different. **Copy and paste this value into a text file to use for the next steps!**<br/><br/>
5353
![](/posts/files/coding-101-rest-basics-ga/assets/images/postman3.png "Response")
5454

55-
#### Congrats! You just made your first REST API call! ####
55+
#### Congratulations! You just made your first REST API call!
5656
<br/>
5757
<br/>
5858

labs/coding-101-rest-basics-ga/7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
1. In Postman append '?limit=1&offset=1' to the URL http://{APIC-EMController}/api/v1/host so reads as 'http://{APIC-EMController}/api/v1/host?limit=1&offset=1'. Press the **Send** button. How does the return data differ? Check the API Reference Guide for more information about the Get Host API call.
2929
<br/><br/>
3030

31-
#### Congrats! You just made your first REST API call using the APIC-EM Service Ticket! ####
31+
#### Congratulations! You just made your first REST API call using the APIC-EM Service Ticket!
3232
<br/>
3333
<br/>
3434

labs/coding-101-rest-basics-ga/8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ The output should look similar to the example. For display purposes, some record
3232
* Compare the change you just made in Get Network Devices API call versus the change you made in the Get Hosts call in the previous exercise of Step 7. How are they different and why? Hint: Check the API Reference Guide for each of these API calls.
3333
* In Postman change the API call 'http://{APIC-EMController}/api/v1/network-device/1/2' to 'http://{APIC-EMController}/api/v1/user'. Press the *Send* button. How is the returned data different and what does it represent? Hint: Check the API Reference Guide
3434

35-
### Congrats! You've just completed lab Coding 101 - REST API Basics!
35+
### Congratulations! You've just completed lab Coding 101 - REST API Basics!

0 commit comments

Comments
 (0)