Files
services/url/examples.json
Asim Aslam 6ec7a9d5c1 fix example
2021-12-11 20:28:34 +00:00

36 lines
1.0 KiB
JSON

{
"list": [{
"title": "List your shortened URLs",
"description": "List the token holder's shortened URLs",
"run_check": false,
"request": {
},
"response": {
"urlPairs": [{
"shortURL": "https://m3o.one/u/f8f3f83f3f83g",
"destinationURL": "https://mysite.com/this-is-a-rather-long-web-address"
}]
}
}],
"shorten": [{
"title": "Shorten a long URL",
"run_check": false,
"request": {
"destinationURL": "https://mysite.com/this-is-a-rather-long-web-address"
},
"response": {
"shortURL": "https://m3o.one/u/f8f3f83f3f83g"
}
}],
"proxy": [{
"title": "Resolve a short URL to a long destination URL",
"run_check": false,
"request": {
"shortURL": "https://m3o.one/u/ck6SGVkYp"
},
"response": {
"destinationURL": "https://mysite.com/this-is-a-rather-long-web-address"
}
}]
}