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
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
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:
Sample value: "ACTIVE" |
- cURL
- C#
- Go
- NodeJS
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"}}}'
var options = new RestClientOptions("{{URL}}/jsonrpc")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""method"": ""CustomerService.UpdateLegalRepStatus"",
" + "\n" +
@" ""id"": ""1"",
" + "\n" +
@" ""params"": {
" + "\n" +
@" ""api"": {
" + "\n" +
@" ""signature"": ""{{signature}}"",
" + "\n" +
@" ""keyId"": ""55009"",
" + "\n" +
@" ""credential"": ""Basic c3ViYWFjdXN0b21lckBuZXR4ZC5jb206MWI3NmNhNTIwODJkNGMzYWI1YWExOGU5YWRlYTI4ZWU="",
" + "\n" +
@" ""apiKey"": ""1b76ca52082d4c3ab5aa18e9adea28ee""
" + "\n" +
@" },
" + "\n" +
@" ""payload"": {
" + "\n" +
@" ""ID"": ""10754025"",
" + "\n" +
@" ""status"": ""ACTIVE""
" + "\n" +
@" }
" + "\n" +
@" }
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "{{URL}}/jsonrpc"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"method": "CustomerService.UpdateLegalRepStatus",`+"
"+`
"id": "1",`+"
"+`
"params": {`+"
"+`
"api": {`+"
"+`
"signature": "{{signature}}",`+"
"+`
"keyId": "55009",`+"
"+`
"credential": "Basic c3ViYWFjdXN0b21lckBuZXR4ZC5jb206MWI3NmNhNTIwODJkNGMzYWI1YWExOGU5YWRlYTI4ZWU=",`+"
"+`
"apiKey": "1b76ca52082d4c3ab5aa18e9adea28ee"`+"
"+`
},`+"
"+`
"payload": {`+"
"+`
"ID": "10754025",`+"
"+`
"status": "ACTIVE"`+"
"+`
}`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/jsonrpc',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"method": "CustomerService.UpdateLegalRepStatus",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "55009",
"credential": "Basic c3ViYWFjdXN0b21lckBuZXR4ZC5jb206MWI3NmNhNTIwODJkNGMzYWI1YWExOGU5YWRlYTI4ZWU=",
"apiKey": "1b76ca52082d4c3ab5aa18e9adea28ee"
},
"payload": {
"ID": "10754025",
"status": "ACTIVE"
}
}
});
req.write(postData);
req.end();
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
Parameter | Description |
---|---|
id | String Response ID echoed from the request ID Sample value: "1" |
result | Object |
Id | String Unique ID of the legal representative Sample Value: "10754025" |
Status | Enum Updated status of the legal representative Valid values:
|
createdDate | String Date and time when Legal representative was created Sample Value: "0001-01-01T00:00:00Z" |
updatedDate | String Date and time when Legal representative was last updated Sample Value: "0001-01-01T00:00:00Z" |
jsonrpc | String 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"
}