Initiate a Zelle® Disbursement
In this tutorial, you learn how to initiate a Zelle® Disbursement.
Before you begin
To initiate a payment, you need the following:
- A registered and fully onboarded Developer Account on the J.P. Morgan Payments Developer Portal.
- An active project that provides you with the credentials to make a request.
- A bank account in the country from which you want to initiate a payment.
Send a request
From your command line, send a POST
request to the /payments
endpoint.
For example, the following code snippet contains a cURL command that initiates a Zelle® Disbursement payment that uses an email address. It also contains the command's payload formatted in JSON so that it's easier to see.
{
"requestedExecutionDate": "2024-10-01",
"paymentIdentifiers": {
"endToEndId": "ZELLETEST"
},
"transferType": "CREDIT",
"value": {
"currency": "USD",
"amount": "10"
},
"paymentType": "ZELLE",
"debtor": {
"name": "Company ABC",
"account": {
"accountNumber": "123456789"
}
},
"debtorAgent": {
"financialInstitutionIds": [
{
"id": "CHASUS33",
"idType": "BIC"
}
]
},
"creditor": {
"name": "Robert Brown",
"account": {
"alternateAccountIdentifiers": [
{
"identifier": "robert.brown@example.com",
"idType": "PROPRIETARY",
"proprietarySchemeName": "EMAL"
}
]
},
"postalAddress": {
"country": "US",
"buildingNumber": "123",
"streetName": "Kennedy Street",
"city": "Tampa",
"postalCode": "33606",
"countrySubDivision": "FL"
}
},
"remittanceInformation": {
"unstructuredInformation": [
{
"text": "Payment for catering facilities - INVC009887"
}
]
}
}
Confirm the response
Confirm that you receive a response that contains an endToEndId
and a paymentId
. You can use these values later to get the status and details of your payment.
For example, the following code snippet contains a response to the previous cURL command to initiate a Zelle® Disbursement that uses an email address. It's formatted in JSON so that it's easier to see.
{
"endToEndId": " ZELLETEST123",
"paymentId": "d591f34f-0d57-43b7-b61d-29bc0bda5f94"
}
Related
- For more information about Zelle® Disbursement payment parameters, see Payment parameters.
- For more information about status responses and error codes supported by the Global Payments API, see Global Payments 2 status responses and error codes.
Next steps
Learn how to get the status of a Zelle® Disbursement payment request.