v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBSend Faster Payment [beta]
Send a Faster Payments payment.
The Faster Payments System (FPS) is a UK service that allows near-instant electronic money transfers between banks.
Notes:
-
Before calling this endpoint, you must call Confirmation of Payee to verify the payee.
-
In case of failure, the transaction is updated with status = CANCELLED, and the status_reason field explains why.
-
If the counterparty bank rejects the transaction, the transaction is still considered SETTLED and, when the provider webhook return is processed, a new FPS out return event is generated and the amount is credited back to the debtor's account.
-
This endpoint generates a FPS out payment transaction event.
Headers
Account token - token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a <b>401 Unauthorized</b> message
A UUID (without hyphens) to ensure the operation remains idempotent, allowing for operation repetition without causing unintended effects or duplication. Identifies the transaction on future events.
Request body
Example request
{
"end_to_end_id": "1374f841568e4ff4b3a63b023c170ec",
"creditor_account": {
"name": "Len Lease",
"scheme_name": "iban",
"identification": "AA00AAA000000000000000"
},
"scheme_payment_type": "ImmediatePayment",
"currency": {
"amount": 215,
"code": "GBP"
},
"remittance_information": {
"reference": "Reference information"
}
}Response
Response Body
Example response
{
"end_to_end_id": "1374f841568e4ff4b3a63b023c170ec",
"status": "PROCESSING"
}