You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: labs/coding-101-rest-basics-ga/6.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ GET https://{APIC-EM-Server}/api/v1/host
27
27
28
28
```
29
29
30
-
Alternatively, you may want to retrieve some of the hosts to page through them. In that case, pass the 'limit' parameter to specify the maximum number of hosts to be return. You can also pass the 'offset' parameter to specify where to start the list of hosts. The following call specifies to start from the first host, (offset=1), and to return a maximum of five hosts, (limit=5).
30
+
Alternatively, you may want to retrieve some of the hosts to page through them. In that case, pass the 'limit' parameter to specify the maximum number of hosts to be returned. You can also pass the 'offset' parameter to specify where to start the list of hosts. The following call specifies to start from the first host, (offset=1), and to return a maximum of five hosts, (limit=5).
31
31
```http
32
32
33
33
GET https://{APIC-EM-Server}/api/v1/host?limit=5&offset=1
0 commit comments