Payment links
Public payment link logo
No authentication. Returns the uploaded logo image.
GET
Public payment link logo
Path Parameters
Response
200 - image/*
Logo image
The response is of type file.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
No authentication. Returns the uploaded logo image.
curl --request GET \
--url http://localhost:4000/v1/pay/{id}/logoconst options = {method: 'GET'};
fetch('http://localhost:4000/v1/pay/{id}/logo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/pay/{id}/logo"
response = requests.get(url)
print(response.text)"<string>"Logo image
The response is of type file.
curl --request GET \
--url http://localhost:4000/v1/pay/{id}/logoconst options = {method: 'GET'};
fetch('http://localhost:4000/v1/pay/{id}/logo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/pay/{id}/logo"
response = requests.get(url)
print(response.text)"<string>"