Skip to main content
Version: 1.0.2

Update Legal Representative Status

'UpdateLegalRepStatus' API enables to change the status of legal representative

Bank or financial institution can update legal representative status with any one of the valid statuses depending on the requirement. On providing legal representative details and the required status to be updated as request, the legal representative 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

Constant value: "CustomerService.UpdateLegalRepStatus"

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"

apiKey

Mandatory

String

API credential provided by NetXD

Sample value: "apikey"

payload

Mandatory

Object

ID

Mandatory

String

Unique ID of the legal representative

Sample value: "10754025"

Status

Mandatory

Enum

The status to be updated for the legal representative

Valid values:

  • ACTIVE - Currently active and can perform all defined activities
  • INACTIVE - Not currently active

Sample value: "ACTIVE"


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"CustomerService.UpdateLegalRepStatus","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"55009","credential":"Basic c3ViYWFjdXN0b21lckBuZXR4ZC5jb206MWI3NmNhNTIwODJkNGMzYWI1YWExOGU5YWRlYTI4ZWU=","apiKey":"1b76ca52082d4c3ab5aa18e9adea28ee"},"payload":{"ID":"10754025","status":"ACTIVE"}}}'

Body


{
"method": "CustomerService.UpdateLegalRepStatus",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "55009",
"credential": "Basic c3ViYWFjdXN0b21lckBuZXR4ZC5jb206MWI3NmNhNTIwODJkNGMzYWI1YWExOGU5YWRlYTI4ZWU=",
"apiKey": "1b76ca52082d4c3ab5aa18e9adea28ee"
},
"payload": {
"ID": "10754025",
"status": "ACTIVE"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value: "1"

result

Object

IdString

Unique ID of the legal representative

Sample Value: "10754025"
StatusEnum

Updated status of the legal representative

Valid values:

  • ACTIVE - Currently active and can perform all defined activities
  • INACTIVE - Not currently active
Sample Value: "ACTIVE"
createdDateString

Date and time when Legal representative was created

Sample Value: "0001-01-01T00:00:00Z"
updatedDateString

Date and time when Legal representative was last updated

Sample Value: "0001-01-01T00:00:00Z"
jsonrpcString

Json RPC version

Sample Value: "2.0"

{
"id": "1",
"result": {
"ID": "10754025",
"status": "ACTIVE",
"createdDate": "0001-01-01T00:00:00Z",
"updatedDate": "0001-01-01T00:00:00Z"
},
"jsonrpc": "2.0"
}