Create new remitter
curl --request POST \
--url https://api.hit-pay.com/v1/remitters \
--header 'Content-Type: application/json' \
--header 'X-BUSINESS-API-KEY: <x-business-api-key>' \
--data '
{
"entity_type": "individual",
"full_name": "Saul Schumm",
"id_number": "A1748247986",
"id_type": "national_id",
"date_of_birth": "1990-01-01",
"place_of_birth": "Singapore",
"nationality": "sg",
"contact_number": "+6591234567",
"email": "test@gmail.com",
"address": {
"street_address": "123 Orchard Rd",
"city": "Singapore ",
"state": "Singapore",
"postal_code": "238888",
"country": "sg"
},
"company_name": "Ebert, Zulauf and Daugherty"
}
'import requests
url = "https://api.hit-pay.com/v1/remitters"
payload = {
"entity_type": "individual",
"full_name": "Saul Schumm",
"id_number": "A1748247986",
"id_type": "national_id",
"date_of_birth": "1990-01-01",
"place_of_birth": "Singapore",
"nationality": "sg",
"contact_number": "+6591234567",
"email": "test@gmail.com",
"address": {
"street_address": "123 Orchard Rd",
"city": "Singapore ",
"state": "Singapore",
"postal_code": "238888",
"country": "sg"
},
"company_name": "Ebert, Zulauf and Daugherty"
}
headers = {
"X-BUSINESS-API-KEY": "<x-business-api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-BUSINESS-API-KEY': '<x-business-api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
entity_type: 'individual',
full_name: 'Saul Schumm',
id_number: 'A1748247986',
id_type: 'national_id',
date_of_birth: '1990-01-01',
place_of_birth: 'Singapore',
nationality: 'sg',
contact_number: '+6591234567',
email: 'test@gmail.com',
address: {
street_address: '123 Orchard Rd',
city: 'Singapore ',
state: 'Singapore',
postal_code: '238888',
country: 'sg'
},
company_name: 'Ebert, Zulauf and Daugherty'
})
};
fetch('https://api.hit-pay.com/v1/remitters', 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.hit-pay.com/v1/remitters",
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([
'entity_type' => 'individual',
'full_name' => 'Saul Schumm',
'id_number' => 'A1748247986',
'id_type' => 'national_id',
'date_of_birth' => '1990-01-01',
'place_of_birth' => 'Singapore',
'nationality' => 'sg',
'contact_number' => '+6591234567',
'email' => 'test@gmail.com',
'address' => [
'street_address' => '123 Orchard Rd',
'city' => 'Singapore ',
'state' => 'Singapore',
'postal_code' => '238888',
'country' => 'sg'
],
'company_name' => 'Ebert, Zulauf and Daugherty'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-BUSINESS-API-KEY: <x-business-api-key>"
],
]);
$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.hit-pay.com/v1/remitters"
payload := strings.NewReader("{\n \"entity_type\": \"individual\",\n \"full_name\": \"Saul Schumm\",\n \"id_number\": \"A1748247986\",\n \"id_type\": \"national_id\",\n \"date_of_birth\": \"1990-01-01\",\n \"place_of_birth\": \"Singapore\",\n \"nationality\": \"sg\",\n \"contact_number\": \"+6591234567\",\n \"email\": \"test@gmail.com\",\n \"address\": {\n \"street_address\": \"123 Orchard Rd\",\n \"city\": \"Singapore \",\n \"state\": \"Singapore\",\n \"postal_code\": \"238888\",\n \"country\": \"sg\"\n },\n \"company_name\": \"Ebert, Zulauf and Daugherty\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-BUSINESS-API-KEY", "<x-business-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.hit-pay.com/v1/remitters")
.header("X-BUSINESS-API-KEY", "<x-business-api-key>")
.header("Content-Type", "application/json")
.body("{\n \"entity_type\": \"individual\",\n \"full_name\": \"Saul Schumm\",\n \"id_number\": \"A1748247986\",\n \"id_type\": \"national_id\",\n \"date_of_birth\": \"1990-01-01\",\n \"place_of_birth\": \"Singapore\",\n \"nationality\": \"sg\",\n \"contact_number\": \"+6591234567\",\n \"email\": \"test@gmail.com\",\n \"address\": {\n \"street_address\": \"123 Orchard Rd\",\n \"city\": \"Singapore \",\n \"state\": \"Singapore\",\n \"postal_code\": \"238888\",\n \"country\": \"sg\"\n },\n \"company_name\": \"Ebert, Zulauf and Daugherty\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hit-pay.com/v1/remitters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-BUSINESS-API-KEY"] = '<x-business-api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"entity_type\": \"individual\",\n \"full_name\": \"Saul Schumm\",\n \"id_number\": \"A1748247986\",\n \"id_type\": \"national_id\",\n \"date_of_birth\": \"1990-01-01\",\n \"place_of_birth\": \"Singapore\",\n \"nationality\": \"sg\",\n \"contact_number\": \"+6591234567\",\n \"email\": \"test@gmail.com\",\n \"address\": {\n \"street_address\": \"123 Orchard Rd\",\n \"city\": \"Singapore \",\n \"state\": \"Singapore\",\n \"postal_code\": \"238888\",\n \"country\": \"sg\"\n },\n \"company_name\": \"Ebert, Zulauf and Daugherty\"\n}"
response = http.request(request)
puts response.read_body{
"id": "9f0092ca-4b7d-4e33-b503-9dd27b0807ba",
"status": "pending",
"entity_type": "individual",
"full_name": "Hilda Ferry",
"id_number": "A1748248115",
"id_type": "national_id",
"date_of_birth": "1990-01-01",
"place_of_birth": "Singapore",
"nationality": "sg",
"contact_number": "+6591234567",
"email": "test5@gmail.com",
"address": {
"street_address": "123 Orchard Rd",
"city": "Singapore",
"state": "Singapore",
"postal_code": "238888",
"country": "sg"
},
"company_name": "Abernathy Inc",
"created_by": {
"id": "98566f58-1c76-4b8b-8f75-d20bba2bc7f8",
"display_name": "TestingSG",
"first_name": "QA",
"last_name": "SG"
},
"created_at": "2025-05-26T16:28:35+08:00",
"updated_at": "2025-05-26T16:28:35+08:00"
}{
"message": "The entity type field is required. (and 10 more errors)",
"errors": {
"entity_type": [
"The entity type field is required."
],
"full_name": [
"The full name field is required."
],
"id_number": [
"The id number field is required."
],
"id_type": [
"The id type field is required."
],
"date_of_birth": [
"The date of birth field is required."
],
"address": [
"The address field is required."
],
"address.street_address": [
"The address.street address field is required."
],
"address.city": [
"The address.city field is required."
],
"address.state": [
"The address.state field is required."
],
"address.postal_code": [
"The address.postal code field is required."
],
"address.country": [
"The address.country field is required."
]
}
}Remitters
Create Remitter
Register a new remitter for payout transfers
POST
/
v1
/
remitters
Create new remitter
curl --request POST \
--url https://api.hit-pay.com/v1/remitters \
--header 'Content-Type: application/json' \
--header 'X-BUSINESS-API-KEY: <x-business-api-key>' \
--data '
{
"entity_type": "individual",
"full_name": "Saul Schumm",
"id_number": "A1748247986",
"id_type": "national_id",
"date_of_birth": "1990-01-01",
"place_of_birth": "Singapore",
"nationality": "sg",
"contact_number": "+6591234567",
"email": "test@gmail.com",
"address": {
"street_address": "123 Orchard Rd",
"city": "Singapore ",
"state": "Singapore",
"postal_code": "238888",
"country": "sg"
},
"company_name": "Ebert, Zulauf and Daugherty"
}
'import requests
url = "https://api.hit-pay.com/v1/remitters"
payload = {
"entity_type": "individual",
"full_name": "Saul Schumm",
"id_number": "A1748247986",
"id_type": "national_id",
"date_of_birth": "1990-01-01",
"place_of_birth": "Singapore",
"nationality": "sg",
"contact_number": "+6591234567",
"email": "test@gmail.com",
"address": {
"street_address": "123 Orchard Rd",
"city": "Singapore ",
"state": "Singapore",
"postal_code": "238888",
"country": "sg"
},
"company_name": "Ebert, Zulauf and Daugherty"
}
headers = {
"X-BUSINESS-API-KEY": "<x-business-api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-BUSINESS-API-KEY': '<x-business-api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
entity_type: 'individual',
full_name: 'Saul Schumm',
id_number: 'A1748247986',
id_type: 'national_id',
date_of_birth: '1990-01-01',
place_of_birth: 'Singapore',
nationality: 'sg',
contact_number: '+6591234567',
email: 'test@gmail.com',
address: {
street_address: '123 Orchard Rd',
city: 'Singapore ',
state: 'Singapore',
postal_code: '238888',
country: 'sg'
},
company_name: 'Ebert, Zulauf and Daugherty'
})
};
fetch('https://api.hit-pay.com/v1/remitters', 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.hit-pay.com/v1/remitters",
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([
'entity_type' => 'individual',
'full_name' => 'Saul Schumm',
'id_number' => 'A1748247986',
'id_type' => 'national_id',
'date_of_birth' => '1990-01-01',
'place_of_birth' => 'Singapore',
'nationality' => 'sg',
'contact_number' => '+6591234567',
'email' => 'test@gmail.com',
'address' => [
'street_address' => '123 Orchard Rd',
'city' => 'Singapore ',
'state' => 'Singapore',
'postal_code' => '238888',
'country' => 'sg'
],
'company_name' => 'Ebert, Zulauf and Daugherty'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-BUSINESS-API-KEY: <x-business-api-key>"
],
]);
$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.hit-pay.com/v1/remitters"
payload := strings.NewReader("{\n \"entity_type\": \"individual\",\n \"full_name\": \"Saul Schumm\",\n \"id_number\": \"A1748247986\",\n \"id_type\": \"national_id\",\n \"date_of_birth\": \"1990-01-01\",\n \"place_of_birth\": \"Singapore\",\n \"nationality\": \"sg\",\n \"contact_number\": \"+6591234567\",\n \"email\": \"test@gmail.com\",\n \"address\": {\n \"street_address\": \"123 Orchard Rd\",\n \"city\": \"Singapore \",\n \"state\": \"Singapore\",\n \"postal_code\": \"238888\",\n \"country\": \"sg\"\n },\n \"company_name\": \"Ebert, Zulauf and Daugherty\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-BUSINESS-API-KEY", "<x-business-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.hit-pay.com/v1/remitters")
.header("X-BUSINESS-API-KEY", "<x-business-api-key>")
.header("Content-Type", "application/json")
.body("{\n \"entity_type\": \"individual\",\n \"full_name\": \"Saul Schumm\",\n \"id_number\": \"A1748247986\",\n \"id_type\": \"national_id\",\n \"date_of_birth\": \"1990-01-01\",\n \"place_of_birth\": \"Singapore\",\n \"nationality\": \"sg\",\n \"contact_number\": \"+6591234567\",\n \"email\": \"test@gmail.com\",\n \"address\": {\n \"street_address\": \"123 Orchard Rd\",\n \"city\": \"Singapore \",\n \"state\": \"Singapore\",\n \"postal_code\": \"238888\",\n \"country\": \"sg\"\n },\n \"company_name\": \"Ebert, Zulauf and Daugherty\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hit-pay.com/v1/remitters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-BUSINESS-API-KEY"] = '<x-business-api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"entity_type\": \"individual\",\n \"full_name\": \"Saul Schumm\",\n \"id_number\": \"A1748247986\",\n \"id_type\": \"national_id\",\n \"date_of_birth\": \"1990-01-01\",\n \"place_of_birth\": \"Singapore\",\n \"nationality\": \"sg\",\n \"contact_number\": \"+6591234567\",\n \"email\": \"test@gmail.com\",\n \"address\": {\n \"street_address\": \"123 Orchard Rd\",\n \"city\": \"Singapore \",\n \"state\": \"Singapore\",\n \"postal_code\": \"238888\",\n \"country\": \"sg\"\n },\n \"company_name\": \"Ebert, Zulauf and Daugherty\"\n}"
response = http.request(request)
puts response.read_body{
"id": "9f0092ca-4b7d-4e33-b503-9dd27b0807ba",
"status": "pending",
"entity_type": "individual",
"full_name": "Hilda Ferry",
"id_number": "A1748248115",
"id_type": "national_id",
"date_of_birth": "1990-01-01",
"place_of_birth": "Singapore",
"nationality": "sg",
"contact_number": "+6591234567",
"email": "test5@gmail.com",
"address": {
"street_address": "123 Orchard Rd",
"city": "Singapore",
"state": "Singapore",
"postal_code": "238888",
"country": "sg"
},
"company_name": "Abernathy Inc",
"created_by": {
"id": "98566f58-1c76-4b8b-8f75-d20bba2bc7f8",
"display_name": "TestingSG",
"first_name": "QA",
"last_name": "SG"
},
"created_at": "2025-05-26T16:28:35+08:00",
"updated_at": "2025-05-26T16:28:35+08:00"
}{
"message": "The entity type field is required. (and 10 more errors)",
"errors": {
"entity_type": [
"The entity type field is required."
],
"full_name": [
"The full name field is required."
],
"id_number": [
"The id number field is required."
],
"id_type": [
"The id type field is required."
],
"date_of_birth": [
"The date of birth field is required."
],
"address": [
"The address field is required."
],
"address.street_address": [
"The address.street address field is required."
],
"address.city": [
"The address.city field is required."
],
"address.state": [
"The address.state field is required."
],
"address.postal_code": [
"The address.postal code field is required."
],
"address.country": [
"The address.country field is required."
]
}
}Headers
Example:
"b286daabf9921b5a01a4621f026c111e046f8911feba212996c92159b98427d"
Body
application/json
Available options:
individual, company Example:
"1990-01-01"
Example:
"sg"
Example:
"+6591234567"
Show child attributes
Show child attributes
Available options:
national_id, passport, driving_license Example:
"Singapore"
It's required if entity_type is company.
Response
201
Available options:
individual, company Available options:
national_id, passport, driving_license Show child attributes
Show child attributes
Show child attributes
Show child attributes
Last modified on February 25, 2026
Was this page helpful?
⌘I