Instant Pay
Transfer Funds
Transfer funds to an employee or contractor’s card, optionally connected to an employee check or contractor payment.
POST
/
wallet
/
transfer
Transfer Funds
curl --request POST \
--url https://api.zeal.com/wallet/transfer \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"companyID": "<string>",
"amount": 123,
"employeeID": "<string>",
"contractorID": "<string>",
"connection": {
"connectionID": "<string>"
},
"cardID": "<string>",
"bankAccountID": "<string>"
}
'import requests
url = "https://api.zeal.com/wallet/transfer"
payload = {
"companyID": "<string>",
"amount": 123,
"employeeID": "<string>",
"contractorID": "<string>",
"connection": { "connectionID": "<string>" },
"cardID": "<string>",
"bankAccountID": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
companyID: '<string>',
amount: 123,
employeeID: '<string>',
contractorID: '<string>',
connection: {connectionID: '<string>'},
cardID: '<string>',
bankAccountID: '<string>'
})
};
fetch('https://api.zeal.com/wallet/transfer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zeal.com/wallet/transfer",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'companyID' => '<string>',
'amount' => 123,
'employeeID' => '<string>',
'contractorID' => '<string>',
'connection' => [
'connectionID' => '<string>'
],
'cardID' => '<string>',
'bankAccountID' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zeal.com/wallet/transfer"
payload := strings.NewReader("{\n \"companyID\": \"<string>\",\n \"amount\": 123,\n \"employeeID\": \"<string>\",\n \"contractorID\": \"<string>\",\n \"connection\": {\n \"connectionID\": \"<string>\"\n },\n \"cardID\": \"<string>\",\n \"bankAccountID\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.zeal.com/wallet/transfer")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"companyID\": \"<string>\",\n \"amount\": 123,\n \"employeeID\": \"<string>\",\n \"contractorID\": \"<string>\",\n \"connection\": {\n \"connectionID\": \"<string>\"\n },\n \"cardID\": \"<string>\",\n \"bankAccountID\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeal.com/wallet/transfer")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"companyID\": \"<string>\",\n \"amount\": 123,\n \"employeeID\": \"<string>\",\n \"contractorID\": \"<string>\",\n \"connection\": {\n \"connectionID\": \"<string>\"\n },\n \"cardID\": \"<string>\",\n \"bankAccountID\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"walletTransactionID": "d21a3b12e051f60cfb014b1d",
"type": "debit",
"companyID": "bf015b00e052f60cfb0e4a0d",
"employeeID": "d210f054bf5b006f50aecbe0",
"contractorID": null,
"bankAccountID": null,
"cardID": "10c313104851406408f4130be0540451",
"status": "settled",
"description": "Instant transfer",
"gross_amount": 102,
"partner_fee": 1,
"zeal_fee": 1,
"net_amount": 100,
"last_four": "0432",
"date": "2025-08-02T23:00:00.000Z"
},
"testMode": false
}{}Authorizations
Body
application/json
ID of company
The total amount (gross) to transfer to this worker's card
Zeal employee ID
Zeal contractor ID
Connect this transfer to an employee check or contractor payment in Zeal
Show child attributes
Show child attributes
⌘I
Transfer Funds
curl --request POST \
--url https://api.zeal.com/wallet/transfer \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"companyID": "<string>",
"amount": 123,
"employeeID": "<string>",
"contractorID": "<string>",
"connection": {
"connectionID": "<string>"
},
"cardID": "<string>",
"bankAccountID": "<string>"
}
'import requests
url = "https://api.zeal.com/wallet/transfer"
payload = {
"companyID": "<string>",
"amount": 123,
"employeeID": "<string>",
"contractorID": "<string>",
"connection": { "connectionID": "<string>" },
"cardID": "<string>",
"bankAccountID": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
companyID: '<string>',
amount: 123,
employeeID: '<string>',
contractorID: '<string>',
connection: {connectionID: '<string>'},
cardID: '<string>',
bankAccountID: '<string>'
})
};
fetch('https://api.zeal.com/wallet/transfer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zeal.com/wallet/transfer",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'companyID' => '<string>',
'amount' => 123,
'employeeID' => '<string>',
'contractorID' => '<string>',
'connection' => [
'connectionID' => '<string>'
],
'cardID' => '<string>',
'bankAccountID' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zeal.com/wallet/transfer"
payload := strings.NewReader("{\n \"companyID\": \"<string>\",\n \"amount\": 123,\n \"employeeID\": \"<string>\",\n \"contractorID\": \"<string>\",\n \"connection\": {\n \"connectionID\": \"<string>\"\n },\n \"cardID\": \"<string>\",\n \"bankAccountID\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.zeal.com/wallet/transfer")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"companyID\": \"<string>\",\n \"amount\": 123,\n \"employeeID\": \"<string>\",\n \"contractorID\": \"<string>\",\n \"connection\": {\n \"connectionID\": \"<string>\"\n },\n \"cardID\": \"<string>\",\n \"bankAccountID\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeal.com/wallet/transfer")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"companyID\": \"<string>\",\n \"amount\": 123,\n \"employeeID\": \"<string>\",\n \"contractorID\": \"<string>\",\n \"connection\": {\n \"connectionID\": \"<string>\"\n },\n \"cardID\": \"<string>\",\n \"bankAccountID\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"walletTransactionID": "d21a3b12e051f60cfb014b1d",
"type": "debit",
"companyID": "bf015b00e052f60cfb0e4a0d",
"employeeID": "d210f054bf5b006f50aecbe0",
"contractorID": null,
"bankAccountID": null,
"cardID": "10c313104851406408f4130be0540451",
"status": "settled",
"description": "Instant transfer",
"gross_amount": 102,
"partner_fee": 1,
"zeal_fee": 1,
"net_amount": 100,
"last_four": "0432",
"date": "2025-08-02T23:00:00.000Z"
},
"testMode": false
}{}