This request gets the text for the SEPA Direct Debit pre-notification email.
Try it in the API Explorer
Supported ISO 639-1 language codes
Bulgarian (bg), Czech (cs), Danish (da), Dutch (nl), Estonian (et), Finnish (fi), French (fr), German (de), Greek (el), Hungarian (hu), Italian (it), Latvian (lv), Lithuanian (lt), Maltese (mt), Norwegian (no), Polish (pl), Portuguese (pt), Romanian (ro), Slovak (sk), Slovenian (sl), Spanish (es), Swedish (sv)
JSON Request Content
No content is required in the request body. See above for the supported query parameters.
JSON Response Details
If successful, the response HTTP status code is 200 OK.
The response contains the retrieved translations
object (see translations (JSON object)).
JSON Examples
Request Examples
curl -v -X GET https://sandbox.bluesnap.com/services/2/translations/sepa/prenotification?language=en&transactionid=1011183521 \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
curl -v -X GET https://sandbox.bluesnap.com/services/2/translations/sepa/prenotification?language=en \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
curl -v -X GET https://sandbox.bluesnap.com/services/2/translations/sepa/prenotification \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
Response Examples
{
"translations": [
{
"language": "en",
"translationText": "The amount of 9.65 EUR will be collected using SEPA Direct Debit with Mandate Ooo153451 from your bank account IBAN DE09XXXXXX7893 in the next few days. Please ensure sufficient funds in your account."
}
]
}
{
"translations": [
{
"language": "en",
"translationText": "The amount of ${AMOUNT} EUR will be collected using SEPA Direct Debit with Mandate ${MANDATEID} from your bank account IBAN ${IBAN_PUBLIC_INFO} in the next few days. Please ensure sufficient funds in your account."
}
]
}
{
"translations": [
{
"language": "sl",
"translationText": "Znesek ${AMOUNT} EUR se bo zaračunal z uporabo SEPA naloga z Mandate ${MANDATEID} z vašega bančnega računa IBAN ${IBAN_PUBLIC_INFO} v naslednjih nekaj dneh. Zagotovite, da bo na računu zadostna količina sredstev."
},
{
"language": "pt",
"translationText": "O montante de ${AMOUNT} EUR será recolhido através do Débito Direto SEPA com o Mandato ${MANDATEID} a partir do IBAN da sua conta bancária ${IBAN_PUBLIC_INFO} nos próximos dias. Por favor, garanta ter fundos suficientes na sua conta."
},
{
"language": "fr",
"translationText": "Le montant de ${AMOUNT} EUR sera prélevé dans les prochains jours sur votre compte bancaire, IBAN numéro ${IBAN_PUBLIC_INFO}, par prélèvement SEPA, mandat référence ${MANDATEID}. Assurez-vous de disposer d'un montant de fonds suffisant sur votre compte."
},
...
]
}
XML Request Content
No content is required in the request body. See above for the supported query parameters.
XML Response Details
If successful, the response HTTP status code is 200 OK.
The response contains the retrieved translations
resource (see translations (XML resource)).
XML Examples
Request Examples
curl -v -X GET https://sandbox.bluesnap.com/services/2/translations/sepa/prenotification?language=en&transactionid=1011183521 \
-H 'Content-Type: application/xml' \
-H 'Accept: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
curl -v -X GET https://sandbox.bluesnap.com/services/2/translations/sepa/prenotification?language=en \
-H 'Content-Type: application/xml' \
-H 'Accept: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
curl -v -X GET https://sandbox.bluesnap.com/services/2/translations/sepa/prenotification \
-H 'Content-Type: application/xml' \
-H 'Accept: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
Response Examples
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<translations xmlns="http://ws.plimus.com">
<translation>
<language>en</language>
<translation-text>The amount of 9.65 EUR will be collected using SEPA Direct Debit with Mandate Ooo153451 from your bank account IBAN DE09XXXXXX7891 in the next few days. Please ensure sufficient funds in your account.</translation-text>
</translation>
</translations>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<translations xmlns="http://ws.plimus.com">
<translation>
<language>en</language>
<translation-text>The amount of ${AMOUNT} EUR will be collected using SEPA Direct Debit with Mandate ${MANDATEID} from your bank account IBAN ${IBAN_PUBLIC_INFO} in the next few days. Please ensure sufficient funds in your account.</translation-text>
</translation>
</translations>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<translations xmlns="http://ws.plimus.com">
<translation>
<language>sl</language>
<translation-text>Znesek ${AMOUNT} EUR se bo zaračunal z uporabo SEPA naloga z Mandate ${MANDATEID} z vašega bančnega računa IBAN ${IBAN_PUBLIC_INFO} v naslednjih nekaj dneh. Zagotovite, da bo na računu zadostna količina sredstev.</translation-text>
</translation>
<translation>
<language>pt</language>
<translation-text>O montante de ${AMOUNT} EUR será recolhido através do Débito Direto SEPA com o Mandato ${MANDATEID} a partir do IBAN da sua conta bancária ${IBAN_PUBLIC_INFO} nos próximos dias. Por favor, garanta ter fundos suficientes na sua conta.</translation-text>
</translation>
<translation>
<language>fr</language>
<translation-text>Le montant de ${AMOUNT} EUR sera prélevé dans les prochains jours sur votre compte bancaire, IBAN numéro ${IBAN_PUBLIC_INFO}, par prélèvement SEPA, mandat référence ${MANDATEID}. Assurez-vous de disposer d'un montant de fonds suffisant sur votre compte.</translation-text>
</translation>
...
</translations>
API Explorer (JSON)
To test out a call, optionally enter a supported language code in the language
field or enter an exiting transaction ID in the transactionid
field (this will automatically update the query string), and click Try it!.