Files
services/url/examples.json
Dominic Wong 5e55081200 update exmaple
2022-03-01 17:05:43 +00:00

38 lines
1.1 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",
"created": "2022-03-01T16:04:11.341277162Z",
"hitCount": "4"
}]
}
}],
"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"
}
}]
}