QuickLink
Get quick link logo
Returns the saved logo image for the page. Public; the token in the URL is the credential.
GET
/
quicklink
/
{token}
/
logo
Get quick link logo
curl --request GET \
--url https://api.polymorfa.com/quicklink/{token}/logoconst options = {method: 'GET'};
fetch('https://api.polymorfa.com/quicklink/{token}/logo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.polymorfa.com/quicklink/{token}/logo"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.polymorfa.com/quicklink/{token}/logo"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}false"<string>"{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}Path Parameters
Opaque token required by the target operation. Opaque QuickLink token from the hosted URL.
Response
Logo image
The response is of type file.
⌘I
Get quick link logo
curl --request GET \
--url https://api.polymorfa.com/quicklink/{token}/logoconst options = {method: 'GET'};
fetch('https://api.polymorfa.com/quicklink/{token}/logo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.polymorfa.com/quicklink/{token}/logo"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.polymorfa.com/quicklink/{token}/logo"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}false"<string>"{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}{
"error": "<string>",
"docs": "<string>"
}