GET
/
build
/
image-template
Build image
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.thanks.io/api/v2/build/image-template', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

id
integer

Template ID to use (allowed values 1-13) (required)

background_url
string

Background Image URL

header
string

Header Text

subheader
string

Header Subtext

redirect_url
string

Link for QR Code (optional)

logo_url
string

Image URL to logo (optional)

overlay_url
string

Image URL to replace graphical overlay (optional)

Response

200 - application/json

Successful response

The response is of type any.