API Reference
Post payment transferssepa
API Reference
Post payment transferssepa
POST
/
payment-transfers
/
sepa
import Fiatwebservices from 'fiatwebservices';
const client = new Fiatwebservices({
apiKey: process.env['FWS_API_KEY'], // This is the default and can be omitted
});
async function main() {
const sepa = await client.transfer.sepa.create({ message: '<xml/>' });
console.log(sepa.id);
}
main();
{
"id": "019545cd-c9d1-797d-b2e8-e704c3109311",
"organizationId": "019545cd-c9d1-797d-b2e8-e704c3109311",
"createdAt": "2025-02-27",
"direction": "credit",
"messageId": "1234",
"type": "sepa",
"initiatingPartyId": "019545cd-c9d1-797d-b2e8-e704c3109311",
"creationDate": "2025-02-27",
"categoryPurposeCode": "1234",
"paymentInformationId": "1234"
}
Body
application/json
Response
200
application/json
The payment transfer creation response.
The payment transfer object.
import Fiatwebservices from 'fiatwebservices';
const client = new Fiatwebservices({
apiKey: process.env['FWS_API_KEY'], // This is the default and can be omitted
});
async function main() {
const sepa = await client.transfer.sepa.create({ message: '<xml/>' });
console.log(sepa.id);
}
main();
{
"id": "019545cd-c9d1-797d-b2e8-e704c3109311",
"organizationId": "019545cd-c9d1-797d-b2e8-e704c3109311",
"createdAt": "2025-02-27",
"direction": "credit",
"messageId": "1234",
"type": "sepa",
"initiatingPartyId": "019545cd-c9d1-797d-b2e8-e704c3109311",
"creationDate": "2025-02-27",
"categoryPurposeCode": "1234",
"paymentInformationId": "1234"
}