Skip to main content
Version: 1.0.2

Update Customer Status

'UpdateCustomerStatus' API enables to change the status of customer

Bank or financial institution can update customer status with any one of the valid statuses depending on the requirement. On providing customer details and the required status to be updated as request, the customer status is updated.

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 status through customer service

Constant value: "CustomerService.UpdateCustomerStatus"

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 code"

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

ID

Mandatory

String

Unique ID of the Customer

Sample value: 100000000025001

Status

Mandatory

Enum

The status to be updated for 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

notes

Optional

String

Description or notes given related to customer update status

Sample value: Testing Update


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"CustomerService.UpdateCustomerStatus","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}"},"payload":{"ID":"100000000025001","status":"ACTIVE","notes":"Testing Update"}}}'

Body


{
"method": "CustomerService.UpdateCustomerStatus",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"ID": "100000000025001",
"status": "ACTIVE",
"notes": "Testing Update"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value: "1"

result

Object

IdString

Unique ID of the customer

Sample Value: 100000000005002
StatusEnum

Updated 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

{
"id": "1",
"result": {
"Id": "100000000005002",
"Status": "ACTIVE"
}
}