Add Customer - Business
'AddCustomer-Business' API enables to add business customer
Business Customer - A Fintech or any registered business entity that is onboarded as customer is recognised as a business customer
Bank or financial institution can add a new business customer in their ledger by using this API. On providing the business customer details as request, the customer is added to the ledger with the generation of unique customer ID and the status becomes active.
Refer Add Share holder API to add shareholders of business customer Refer Add Legal Representative API to add users who are responsible for operating the account
Method: POST
{{URL}}/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
method Mandatory | String API method that is being called to add new customer through customer service Constant Value – "CustomerService.AddCustomer" |
id Mandatory | String Unique ID of API request Sample value – "1" (Only numbers) |
params Mandatory | Object |
api Mandatory | Object |
signature Mandatory | String Signature for request validation Sample value – "signature" |
keyId Mandatory | String API key used for request authentication Sample value – "ApplicationKeyId" |
credential Mandatory | String API credential provided by NetXD Sample value – "Credential |
payload Mandatory | Object |
type Mandatory | String Type of customer Constant value – "BUSINESS" |
businessNameLegal Mandatory | String Legal business name of customer Sample value – "SMALLSYS INC" |
dateEstablished Mandatory | String Establishment Date of business entity in YYYYMMDD format Sample value – "20200714" |
identification Mandatory | Array |
type Mandatory | String Type of identification provided by the customer Constant value – "TIN" |
value Mandatory | String Value of respective identification Sample value – "764969832" |
contact Mandatory | Object |
phoneNumber Mandatory | String Business contact number of customer Sample value – "4802150422" |
Mandatory | String Business Email ID of customer Sample value – "daves@bank.com" |
address Mandatory | Object |
addressLine1 Mandatory | String First line of business address Sample value – "795 E DRAGRAM" |
city Mandatory | String City of business address Sample value – "TUCSON" |
state Mandatory | String State of business address Sample value – "AZ" |
country Mandatory | String Country of business address Sample value – "US" |
zip Mandatory | String Zip code of of business address Sample value – "85705" |
kycStatus Optional | String Status of Know Your Customer verification and compliance (Customer onboarding is possible only if the KYC status is 'ACTIVE') Constant value – "ACTIVE" |
kycData Optional | Object |
applicationId Optional | String Unique KYC Application ID generated by the KYC system Sample value – "KYC_00002990750" |
refId Optional | String Reference ID for KYC process Sample value – "2371226d-a6c2-4358-9250-157e80be05c8" |
additionalkycinfo Optional | Object Contains additional KYC information (if available) in JSON format |
- cURL
- C#
- Go
- NodeJS
curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data-raw '{"method":"CustomerService.AddCustomer","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}"},"payload":{"type":"BUSINESS","businessNameLegal":"SMALLSYS INC","dateEstablished":"20200714","identification":[{"type":"TIN","value":"764969832"}],"contact":{"phoneNumber":"4802150422","email":"daves@bank.com"},"address":{"addressLine1":"795 E DRAGRAM","city":"TUCSON","state":"AZ","country":"US","zip":"85705"},"kycStatus":"ACTIVE","kycData":{"applicationId":"KYC_00002990750","refId":"2371226d-a6c2-4358-9250-157e80be05c8","additionalkycinfo":{}}}}}'
var options = new RestClientOptions("{{URL}}/jsonrpc")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""method"": ""CustomerService.AddCustomer"",
" + "\n" +
@" ""id"": ""1"",
" + "\n" +
@" ""params"": {
" + "\n" +
@" ""api"": {
" + "\n" +
@" ""signature"": ""{{signature}}"",
" + "\n" +
@" ""keyId"": ""{{ApplicationKeyId}}"",
" + "\n" +
@" ""credential"": ""{{Credential}}""
" + "\n" +
@" },
" + "\n" +
@" ""payload"": {
" + "\n" +
@" ""type"": ""BUSINESS"",
" + "\n" +
@" ""businessNameLegal"": ""SMALLSYS INC"",
" + "\n" +
@" ""dateEstablished"": ""20200714"",
" + "\n" +
@" ""identification"": [
" + "\n" +
@" {
" + "\n" +
@" ""type"": ""TIN"",
" + "\n" +
@" ""value"": ""764969832""
" + "\n" +
@" }
" + "\n" +
@" ],
" + "\n" +
@" ""contact"": {
" + "\n" +
@" ""phoneNumber"": ""4802150422"",
" + "\n" +
@" ""email"": ""daves@bank.com""
" + "\n" +
@" },
" + "\n" +
@" ""address"": {
" + "\n" +
@" ""addressLine1"": ""795 E DRAGRAM"",
" + "\n" +
@" ""city"": ""TUCSON"",
" + "\n" +
@" ""state"": ""AZ"",
" + "\n" +
@" ""country"": ""US"",
" + "\n" +
@" ""zip"": ""85705""
" + "\n" +
@" },
" + "\n" +
@" ""kycStatus"": ""ACTIVE"",
" + "\n" +
@" ""kycData"": {
" + "\n" +
@" ""applicationId"": ""KYC_00002990750"",
" + "\n" +
@" ""refId"": ""2371226d-a6c2-4358-9250-157e80be05c8"",
" + "\n" +
@" ""additionalkycinfo"": {}
" + "\n" +
@" }
" + "\n" +
@" }
" + "\n" +
@" }
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "{{URL}}/jsonrpc"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"method": "CustomerService.AddCustomer",`+"
"+`
"id": "1",`+"
"+`
"params": {`+"
"+`
"api": {`+"
"+`
"signature": "{{signature}}",`+"
"+`
"keyId": "{{ApplicationKeyId}}",`+"
"+`
"credential": "{{Credential}}"`+"
"+`
},`+"
"+`
"payload": {`+"
"+`
"type": "BUSINESS",`+"
"+`
"businessNameLegal": "SMALLSYS INC",`+"
"+`
"dateEstablished": "20200714",`+"
"+`
"identification": [`+"
"+`
{`+"
"+`
"type": "TIN",`+"
"+`
"value": "764969832"`+"
"+`
}`+"
"+`
],`+"
"+`
"contact": {`+"
"+`
"phoneNumber": "4802150422",`+"
"+`
"email": "daves@bank.com"`+"
"+`
},`+"
"+`
"address": {`+"
"+`
"addressLine1": "795 E DRAGRAM",`+"
"+`
"city": "TUCSON",`+"
"+`
"state": "AZ",`+"
"+`
"country": "US",`+"
"+`
"zip": "85705"`+"
"+`
},`+"
"+`
"kycStatus": "ACTIVE",`+"
"+`
"kycData": {`+"
"+`
"applicationId": "KYC_00002990750",`+"
"+`
"refId": "2371226d-a6c2-4358-9250-157e80be05c8",`+"
"+`
"additionalkycinfo": {}`+"
"+`
}`+"
"+`
}`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/jsonrpc',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"method": "CustomerService.AddCustomer",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"type": "BUSINESS",
"businessNameLegal": "SMALLSYS INC",
"dateEstablished": "20200714",
"identification": [
{
"type": "TIN",
"value": "764969832"
}
],
"contact": {
"phoneNumber": "4802150422",
"email": "daves@bank.com"
},
"address": {
"addressLine1": "795 E DRAGRAM",
"city": "TUCSON",
"state": "AZ",
"country": "US",
"zip": "85705"
},
"kycStatus": "ACTIVE",
"kycData": {
"applicationId": "KYC_00002990750",
"refId": "2371226d-a6c2-4358-9250-157e80be05c8",
"additionalkycinfo": {}
}
}
}
});
req.write(postData);
req.end();
Body
{
"method": "CustomerService.AddCustomer",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"type": "BUSINESS",
"businessNameLegal": "SMALLSYS INC",
"dateEstablished": "20200714",
"identification": [
{
"type": "TIN",
"value": "764969832"
}
],
"contact": {
"phoneNumber": "4802150422",
"email": "daves@bank.com"
},
"address": {
"addressLine1": "795 E DRAGRAM",
"city": "TUCSON",
"state": "AZ",
"country": "US",
"zip": "85705"
},
"kycStatus": "ACTIVE",
"kycData": {
"applicationId": "KYC_00002990750",
"refId": "2371226d-a6c2-4358-9250-157e80be05c8",
"additionalkycinfo": {}
}
}
}
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
id | String Response ID echoed from the request ID Sample value: "1" (Only number) |
result | Object |
Id | String Unique system generated ID for the newly onboarded customer Sample value: "100000000046614" |
CustomerNumber | String Unique system generated number that is associated with the customer information and account details of business customer Sample value: "100000000046614" |
Status | Enum Status of the onboarded customer Valid values:
Sample value: "ACTIVE" |
{
"id": "1",
"result": {
"Id": "100000000046614",
"CustomerNumber": "100000000046614",
"Status": "ACTIVE"
}
}