Skip to main content
Version: 1.0.2

Update Legal Representative

'UpdateLegalRep' API enables to update legal representative of the business customer account

Bank or financial institution can update the existing legal representative details and can enable or disable account authorization settings. On providing the required details as request, the legalrep information is updated with confirmation message.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

method

Mandatory

String

API method that is being called to update Legal Representative through customer service

Constant value: "CustomerService.UpdateLegalRep"

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

ID

Mandatory

String

Unique ID assigned to the Legal Rep

Sample value – "1341008"

Name

Mandatory

String

Name of the Legal Representative

Sample value – "Ach test"

DOB

Mandatory

String

Date of birth of the Legal Representative

Sample value – "20000705"

Address

Mandatory

Object

country

Mandatory

String

Country code of the Legal Representative address

Sample value – "US"

Contact

Mandatory

Object

email

Mandatory

String

Contact email address of the legal representative

Sample value – "achtest@gmail.com"

phoneNumber

Mandatory

String

Contact phone number of the legal representative

Sample value – "9856321470"

InstitutionID

Mandatory

String

Routing number of the bank or financial institution of the legal representative

Sample value – "101115399"

InstitutionName

Mandatory

String

Name of the bank or financial institution of the legal representative

Sample value – "Ach"

identification

Mandatory

Object

type

Mandatory

String

Type of the identification of Legal Representative

Constant value – "SSN"

value

Mandatory

String

Value of the respective identification type

Sample value – "878992904"

Notes

Optional

String

Notes or Description given for the legal representative account

Sample value – "dev test"

UserFlags

Optional

Object

authorizeTransaction

Optional

Boolean

Whether the legal representative user account can process the transaction initiated by another legal representative

Sample value – true

selfAuthorizeTransaction

Optional

Boolean

Whether the legal representative user account can authorize the self-initiated transaction

Sample value – true

canInitiateTransfer

Optional

Boolean

Whether the legal representative user account can initiate transaction

Sample value – true

canApproveNewRoute

Optional

Boolean

Whether the legal representative user account can allow approval option for added beneficiary

Sample value – false

internalTransfer

Optional

Boolean

Whether the legal representative user account can enable internal transfer

Sample value – false


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data-raw '{"method":"CustomerService.UpdateLegalRep","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{credential}}"},"payload":{"ID":"1341008","Name":"Ach test","DOB":"20000705","Address":{"country":"US"},"Contact":{"email":"achtest@gmail.com","phoneNumber":"9856321470"},"InstitutionID":"101115399","InstitutionName":"Ach","identification":{"type":"SSN","value":"878992904"},"Notes":"dev test","UserFlags":{"authorizeTransaction":true,"selfAuthorizeTransaction":true,"canInitiateTransfer":true,"canApproveNewRoute":false,"internalTransfer":false}}}}'

Body


{
"method": "CustomerService.UpdateLegalRep",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{credential}}"
},
"payload": {
"ID": "1341008",
"Name": "Ach test",
"DOB": "20000705",
"Address": {
"country": "US"
},
"Contact": {
"email": "achtest@gmail.com",
"phoneNumber": "9856321470"
},
"InstitutionID": "101115399",
"InstitutionName": "Ach",
"identification": {
"type": "SSN",
"value": "878992904"
},
"Notes": "dev test",
"UserFlags": {
"authorizeTransaction": true,
"selfAuthorizeTransaction": true,
"canInitiateTransfer": true,
"canApproveNewRoute": false,
"internalTransfer": false
}
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value – "1"

result

Object

message

String

Message that confirms the changes updated for Legal Representative

Sample value – "LegalRep Updated Successfully"


{
"id": "1",
"result": {
"Message": "LegalRep Updated Successfully"
}
}