PUT
/
invoices
/
render-settings
/
{id}
curl --request PUT \
  --url https://eu.sequencehq.com/api/invoices/render-settings/{id} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "paymentLinkDisplay": "SHOW_PAYMENT_LINK"
}'
{
  "id": "385f41ab-51f9-49c2-8f25-358545106b88",
  "paymentLinkDisplay": "SHOW_PAYMENT_LINK"
}

Headers

Authorization
string
required

Your API credentials. Eg. Basic {credentials}.

Sequence-Version
enum<string>

Use this header to select an API version

Available options:
2024-07-30

Path Parameters

id
string
required

Invoice settings ID

Body

application/json

Payment link display preference. By default, the payment link is shown.

Available options:
SHOW_PAYMENT_LINK,
HIDE_PAYMENT_LINK
Example:

"SHOW_PAYMENT_LINK"

Response

200
application/json
OK
id
string
required

Invoice settings ID

Example:

"385f41ab-51f9-49c2-8f25-358545106b88"

Payment link display preference. By default, the payment link is shown.

Available options:
SHOW_PAYMENT_LINK,
HIDE_PAYMENT_LINK
Example:

"SHOW_PAYMENT_LINK"