Add payment instructions to the checkout
Learn how to add payment instructrions to your payment method at the store checkout.
Use payment instructions to guide the customers through the next steps when they select your payment method at checkout. Or explain any fees your payment requires.
To add instructions, first you need to find your payment method ID with REST API call. And then to update instruction details for the payment method with a PUT request.
Step 1. Find payment method ID with API call
Make a GET call to /profile/paymentOptions:
GET
https://app.ecwid.com/api/v3/{storeId}/profile/paymentOptions?responseFields=id,appClientId
In response, you’ll see a JSON with payment options:
Parse the response and find the one, where the appClientId
value matches with your app’s client_id.
Step 2. Update fees for the payment method with API call
After getting the payment option ID, use it in a second PUT call that adds an instruction to the payment method. The fee has two main settings: title and the instruction text in the following format:
The instructionsTranslated
object is optional, it’s only required if your store is multilingual and you want to add translations for the instruction. The first “language: value” pair here must match the main store language and text in the `instructions` field.
Request example:
In response you’ll see `200 OK` HTTP status with the response body:
Now your payment method has customer instructions visible at the store checkout.
Last updated
Was this helpful?