Update Account Name
Updates the name of a reserved virtual account to reassign it to another user.
The /PiPUpdateAccountName endpoint is used exclusively for reserved accounts. It allows you to update the account name. In most cases, if a reserved account has been assigned to a user who does not utilize it for transactions, you can reassign the account to another user by updating the account name—helping you manage your limited pool of virtual accounts efficiently.
Production Base URL
http://154.113.16.142:8088/appdevapi/api/
HTTP Request
POST /PiPUpdateAccountName
Post http://154.113.16.142:8088/appdevapi/api/PiPUpdateAccountName
Request (Custom Reference)
{
"account_number": "9977702760",
"account_name": "Jack"
}
{
"requestSuccessful": true,
"responseMessage": "OPERATION SUCCESSFUL",
"responseCode": "00"
}
Sample Implementation
curl -X POST http://154.113.16.142:8088/appdevapi/api/PiPUpdateAccountName \
-H "Client-Id: dGVzdF9Qcm92aWR1cw==" \
-H "X-Auth-Signature: BE09BEE831CF262226B426E39BD109f2AF84DC63076D4174FAC78A2261F9A3D6E59744983B8326B69CDF2963FE314DFC89635CFA37A40596508DD6EAAB09402C7" \
-H "Content-Type: application/json" \
-d '{"account_number":"9977702760","account_name":"Jack"}'
The above command returns JSON structured like this:
{
"requestSuccessful": true,
"responseMessage": "OPERATION SUCCESSFUL",
"responseCode": "00"
}
Last updated