Skip to main content
Version: 1.0.2

Add Legal Representative to an Account

'AddLegalRep' API enables to add legal representative to the business customer account

Bank or financial institution can add multiple legal representatives to the business customer account for managing and operating the account. On providing the request with legal representative ID and the specific account number to which to be added, the legal representative is added to the business customer account with the generation of success message.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

method

Mandatory

String

API method that is being called to add new Legal Representative to an account through account service

Constant value: "AccountService.AddLegalRepToAccount"

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"

payload

Mandatory

Object

LegalRepID

Mandatory

String

Unique ID of the Legal Representative who is newly added to the account

Sample value: 3499

AccountNumber

Mandatory

String

Account number of the account to which the legal representative is added

Sample value: 200779950258238


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"AccountService.AddLegalRepToAccount","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}"},"payload":{"legalRepID":"3499","accountNumber":"200779950258238"}}}'

Body


{
"method": "AccountService.AddLegalRepToAccount",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"legalRepID": "3499",
"accountNumber": "200779950258238"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value: "1"

result

Object

MessageString

Response message confirms that the account is updated successfully with the addition of new legal representative

Sample value: "Account updated Successfully"


{
"id": "1",
"result": {
"Message": "Account updated Successfully"
}
}