Retrieve the details of an existing Basic Disbursement or Fast Access Payout.
Payouts - Card (4)
Send funds to your customer's cards. Standard or using Fast Access.
Authentication
Set your headers:
Authorization: {your_credentials}
Content-Type: application/vnd.worldpay.payouts-v4+json
Accept: application/vnd.worldpay.payouts-v4+json
Replace {your_credentials}
with your base64-encoded Basic Auth username and password.
DNS Whitelisting
Whitelist the following URLs:
https://try.access.worldpay.com/
https://access.worldpay.com/
Please ensure you use DNS whitelisting, not explicit IP whitelisting. When you make a request within Access Worldpay, you should always cache the response returned.
https://try.access.worldpay.com/
https://access.worldpay.com/
- testing (try)
https://try.access.worldpay.com/payouts/{resource}
- live
https://access.worldpay.com/payouts/{resource}
- Payload
- curl
- Python
- Java
- Node.js
- Go
- PHP
- Ruby
- C#
No request payload
Basic Disbursement: Successful resource retrieval with outcome requestReceived
{ "outcome": "requestReceived", "receivedAt": "2023-09-01T10:37:36.923Z", "_links": { "payouts:payout": { "href": "https://try.access.worldpay.com/payouts/{resource}" }, "curies": [ { "name": "payouts", "href": "https://try.access.worldpay.com/rels/payouts/{rel}", "templated": true } ] } }
- testing (try)
https://try.access.worldpay.com/payouts/query
- live
https://access.worldpay.com/payouts/query
- Payload
- curl
- Python
- Java
- Node.js
- Go
- PHP
- Ruby
- C#
No request payload
Basic Disbursement: An existing resource is retrieved with outcome 'requestReceived'
{ "outcome": "requestReceived", "receivedAt": "2025-08-01T10:37:36.923Z", "_links": { "payouts:payout": { "href": "https://try.access.worldpay.com/payouts/{resource}" }, "curies": [ { "name": "payouts", "href": "https://try.access.worldpay.com/rels/payouts/{rel}", "templated": true } ] } }
An object that contains all the information related to your payout request.
An object that contains information about the merchant.
- testing (try)
https://try.access.worldpay.com/payouts/basicDisbursement
- live
https://access.worldpay.com/payouts/basicDisbursement
- Payload
- curl
- Python
- Java
- Node.js
- Go
- PHP
- Ruby
- C#
Successful Basic Disbursement
{ "merchant": { "entity": "default" }, "instruction": { "value": { "amount": 300, "currency": "GBP" }, "payoutInstrument": { "type": "card/plain", "cardHolderName": "Sherlock Holmes", "cardExpiryDate": { "month": 1, "year": 2025 }, "cardNumber": "4444333322221111", "billingAddress": { "address1": "address1", "address2": "address2", "address3": "address3", "postalCode": "postalCode", "city": "city", "state": "state", "countryCode": "GB" } }, "narrative": { "line1": "STATEMENT", "line2": "OPTIONAL" } }, "transactionReference": "transaction-ref" }
Successful Basic Disbursement
{ "outcome": "requestReceived", "receivedAt": "2025-08-01T10:37:36.923Z", "_links": { "payouts:payout": { "href": "https://try.access.worldpay.com/payouts/{resource}" }, "curies": [ { "name": "payouts", "href": "https://try.access.worldpay.com/rels/payouts/{rel}", "templated": true } ] } }
An object that contains all the information related to your payout request.
An object that contains information about the merchant.
- testing (try)
https://try.access.worldpay.com/payouts/fastAccess
- live
https://access.worldpay.com/payouts/fastAccess
- Payload
- curl
- Python
- Java
- Node.js
- Go
- PHP
- Ruby
- C#
Successful issuing of a disbursal request
{ "merchant": { "entity": "default" }, "instruction": { "value": { "amount": 300, "currency": "GBP" }, "payoutInstrument": { "type": "card/plain", "cardHolderName": "Sherlock Holmes", "cardExpiryDate": { "month": 1, "year": 2025 }, "cardNumber": "4444333322221111", "billingAddress": { "address1": "address1", "address2": "address2", "address3": "address3", "postalCode": "postalCode", "city": "city", "state": "state", "countryCode": "GB" } }, "narrative": { "line1": "STATEMENT", "line2": "OPTIONAL" } }, "transactionReference": "transaction-ref" }
The outcome of your Fast Access card payout request.
Outcome of payouts request
Enum Value | Description |
---|---|
requested | We have received your Fast Access disbursement. Retrieve the payout later to confirm status. |
pending | We have sent your Fast Access disbursement request to Visa Direct/Mastercard Send. If there are no updates within 48 hours then this moves to an error outcome. |
approved | Visa/Mastercard has approved your request and the funds are allocated within 30 minutes if the issuer is Fast Access enabled. If not, standard timescales apply. |
disbursed | The transaction is reconciled with Visa/Mastercard’s daily reporting. |
refused | Your Fast Access disbursement request is refused.
|
error | There is no response from Visa/Mastercard within 48 hours or Visa/Mastercard returns an error confirming the request has failed |
requestReceived | We have received your Fast Access disbursement request, but the card does not support Fast Access. |
Successful issuing of a disbursal request
{ "outcome": "pending", "receivedAt": "2025-08-01T10:37:36.923Z", "_links": { "payouts:payout": { "href": "https://try.access.worldpay.com/payouts/{resource}" }, "curies": [ { "name": "payouts", "href": "https://try.access.worldpay.com/rels/payouts/{rel}", "templated": true } ] } }