diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-08-09 05:36:38 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-08-09 05:36:38 +0800 |
commit | 083d42c8f778e8a88f21f179e3ec271f8a762268 (patch) | |
tree | e3eef6feb559a727a1cc66550248f1c96913700a /packages | |
parent | 6121a6d2bffed7187a875148a5e36d0b4b7645ac (diff) | |
download | dexon-sol-tools-083d42c8f778e8a88f21f179e3ec271f8a762268.tar dexon-sol-tools-083d42c8f778e8a88f21f179e3ec271f8a762268.tar.gz dexon-sol-tools-083d42c8f778e8a88f21f179e3ec271f8a762268.tar.bz2 dexon-sol-tools-083d42c8f778e8a88f21f179e3ec271f8a762268.tar.lz dexon-sol-tools-083d42c8f778e8a88f21f179e3ec271f8a762268.tar.xz dexon-sol-tools-083d42c8f778e8a88f21f179e3ec271f8a762268.tar.zst dexon-sol-tools-083d42c8f778e8a88f21f179e3ec271f8a762268.zip |
Fix links in markdown
Diffstat (limited to 'packages')
-rw-r--r-- | packages/sra-api/src/md/introduction.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/sra-api/src/md/introduction.md b/packages/sra-api/src/md/introduction.md index 4d0679f9e..f0dfb04b1 100644 --- a/packages/sra-api/src/md/introduction.md +++ b/packages/sra-api/src/md/introduction.md @@ -2,20 +2,20 @@ Requests that return potentially large collections should respond to the **?page** and **?per_page** parameters. For example: -``` -curl https://api.example-relayer.com/v2/asset_pairs?page=3&per_page=20 +```bash +$ curl https://api.example-relayer.com/v2/asset_pairs?page=3&per_page=20 ``` -Page numbering should be 1-indexed, not 0-indexed. If a query provides an unreasonable (ie. too high) **per_page** value, the response can return a validation error as specified in the [errors section](#errors). If the query specifies a **page** that does not exist (ie. there are not enough **records**), the response should just return an empty **records** array. +Page numbering should be 1-indexed, not 0-indexed. If a query provides an unreasonable (ie. too high) **per_page** value, the response can return a validation error as specified in the [errors section](#section/Errors). If the query specifies a **page** that does not exist (ie. there are not enough **records**), the response should just return an empty **records** array. -All endpoints that are paginated should return a **total**, **page**, **perPage** and a **records** value in the top level of the collection. The value of **total** should be the total number of records for a given query, whereas **records** should be an array representing the response to the query for that page. **page** and **perPage**, are the same values that were specified in the request. See the note in [miscellaneous](#misc) about formatting `snake_case` vs. `lowerCamelCase`. +All endpoints that are paginated should return a **total**, **page**, **perPage** and a **records** value in the top level of the collection. The value of **total** should be the total number of records for a given query, whereas **records** should be an array representing the response to the query for that page. **page** and **perPage**, are the same values that were specified in the request. See the note in [miscellaneous](#section/Misc.) about formatting `snake_case` vs. `lowerCamelCase`. -These requests include the [`asset_pairs`](#get-v2-asset-pairs), [`orders`](#get-v2-orders), and [`orderbook`](#get-v2-orderbook) endpoints. +These requests include the [`asset_pairs`](#operation/getAssetPairs), [`orders`](#operation/getOrders), and [`orderbook`](#operation/getOrderbook) endpoints. # Network Id All requests should be able to specify a **?networkId** query param for all supported networks. For example: -``` -curl https://api.example-relayer.com/v2/asset_pairs?networkId=1 +```bash +$ curl https://api.example-relayer.com/v2/asset_pairs?networkId=1 ``` If the query param is not provided, it should default to **1** (mainnet). @@ -28,7 +28,7 @@ Networks and their Ids: | 3 | Ropsten | | 4 | Rinkeby | - If a certain network is not supported, the response should **400** as specified in the [error response](#error-response) section. For example: + If a certain network is not supported, the response should **400** as specified in the [error response](#section/Errors) section. For example: ``` { |