Skip to main content
Version: 1.0.2

Update Customer - Consumer

'UpdateCustomer - Consumer' API enables to update the required details of a individual customer

Bank or financial institution can update required details of individual customer that are allowed to be changed with fresh inputs. On providing the required details to be changed in respective fields as request, the individual customer information is updated with created and updated date details.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

method

Mandatory

String

API method that is being called to update customer details through customer service

Constant value – "CustomerService.UpdateCustomer"

Id

Mandatory

String

Unique ID of API request

Sample value – "1"

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"

apiKey

Mandatory

String

Unique API key of the customer

Sample value – "ApiKey"

payload

Mandatory

Object

ID

Mandatory

String

Unique ID of the customer

Sample value – "100000000001001"

type

Optional

String

Type of customer

Constant value – "INDIVIDUAL"

DOB

Optional

String

Date of birth of individual customer in YYYYMMDD format

Sample value – "19991209"

title

Optional

Enum

Salutation of the individual customer

Valid values:

  • Mr
  • Ms
  • Mrs

Sample value – "Mr"

address

Optional

Object

addressLine1

Optional

String

First line of customer address

Sample value – "1000 PEACHTREE ST N.E."

city

Optional

String

City of customer address

Sample value – "ATLANTA"

state

Optional

String

State of customer address

Sample value – "US"

country

Optional

String

Country code of customer address

Sample value – "US"

zip

Optional

String

ZIP code of customer address

Sample value – "12345"

contact

Optional

Object

phoneNumber

Optional

String

Contact phone number of the customer

Sample value – "1274563211"

email

Optional

String

Contact email ID of the customer

Sample value – "customersample@gmail.com"

gender

Optional

Enum

Gender of the customer

Valid values:

  • MALE
  • FEMALE

Sample value – ""

firstName

Mandatory

String

First name of the customer

Sample value – "Mark"

lastName

Mandatory

String

Last name of the customer

Sample value – "Antony"

institutionName

Optional

String

Name of the bank or financial institution where the customer holds account

Sample value – "Bank"

institutionId

Optional

String

Unique ID or routing number of the bank or financial institution where the customer holds account

Sample value – "1234"


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data-raw '{"method":"CustomerService.UpdateCustomer","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}","apiKey":"{{ApiKey}}"},"payload":{"ID":"100000000001001","type":"INDIVIDUAL","DOB":"19991209","title":"Mr","address":{"addressLine1":"1000 PEACHTREE ST N.E.","city":"ATLANTA","state":"US","country":"US","zip":"12345"},"contact":{"phoneNumber":"1274563211","email":"customersample@gmail.com"},"gender":"","firstName":"Mark","lastName":"Antony","institutionName":"Bank","institutionId":"1234"}}}'

Body


{
"method": "CustomerService.UpdateCustomer",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}",
"apiKey": "{{ApiKey}}"
},
"payload": {
"ID": "100000000001001",
"type": "INDIVIDUAL",
"DOB": "19991209",
"title": "Mr",
"address": {
"addressLine1": "1000 PEACHTREE ST N.E.",
"city": "ATLANTA",
"state": "US",
"country": "US",
"zip": "12345"
},
"contact": {
"phoneNumber": "1274563211",
"email": "customersample@gmail.com"
},
"gender": "",
"firstName": "Mark",
"lastName": "Antony",
"institutionName": "Bank",
"institutionId": "1234"
}
}
}

Response: 200

Response Parameters
ParameterDescription

Id

String

Response ID echoed from the request ID

Sample value – "1"

result

Object

ID

String

Unique ID of the customer

Sample value – "100000000001001"

type

String

Type of customer

Constant value – "INDIVIDUAL"

identification

Array

type

String

Type of identification provided by the customer

Constant value – "SSN"

value

String

Value of respective identification

Sample value – "987456220"

contact

Object

email

String

Contact email ID of the customer

Sample value – "customersample@gmail.com"

phoneNumber

String

Contact phone number of the customer

Sample value – "1274563211"

address

Object

addressLine1

String

First line of customer address

Sample value – "1000 PEACHTREE ST N.E."

city

String

City of customer address

Sample value – "ATLANTA"

state

String

State of customer address

Sample value – "US"

country

String

Country code of customer address

Sample value – "US"

zip

String

ZIP code of customer address

Sample value – "12345"

DOB

String

Date of birth of individual customer in YYYYMMDD format

Sample value – "19991209"

title

Enum

Salutation of the individual customer

Valid values:

  • Mr
  • Ms
  • Mrs

Sample value – "Mr"

firstName

String

First name of the customer

Sample value – "Mark"

lastName

String

Last name of the customer

Sample value – "Antony"

createdDate

String

Date and time when the customer was created

Sample value – "2024-05-22T07:24:36.881Z"

updatedDate

String

Date and time when the customer was last updated

Sample value – "2024-05-22T10:25:18.079Z"

status

Enum

Status of the customer

Valid values:

  • ACTIVE - Currently active and can perform all defined activities
  • IN_ACTIVE - Not currently active
  • DORMANT - Inactive for specific period
  • SUSPENDED - Temporarily disabled
  • BLOCKED - Restricted to perform all defined activities
  • BLACK_LISTED - Permanently banned

Sample value – "ACTIVE"

jsonrpc

String

JSON RPC version

Constant value – "2.0"


{
"id": "1",
"result": {
"ID": "100000000001001",
"type": "INDIVIDUAL",
"identification": [
{
"type": "SSN",
"value": "987456220"
}
],
"contact": {
"email": "customersample@gmail.com",
"phoneNumber": "1274563211"
},
"address": {
"addressLine1": "1000 PEACHTREE ST N.E.",
"city": "ATLANTA",
"state": "US",
"country": "US",
"zip": "12345"
},
"DOB": "19991209",
"title": "Mr",
"firstName": "Mark",
"lastName": "Antony",
"createdDate": "2024-05-22T07:24:36.881Z",
"updatedDate": "2024-05-22T10:25:18.079Z",
"status": "ACTIVE"
},
"jsonrpc": "2.0"
}