Skip to main content
GET
/
pay
/
{id}
/
logo
Public payment link logo
curl --request GET \
  --url http://localhost:4000/v1/pay/{id}/logo
const 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>"

Path Parameters

id
string<uuid>
required

Response

200 - image/*

Logo image

The response is of type file.