How Can We Help?
Account Detail Transaction
The Account Detail is used to request account details for a given account.
Request JSON Example (Version 1.0)
The following is an example of the JSON string that will be posted requesting Account data for a given account.
{
"accountdetailrequest": {
"version": "1.0",
"transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
"integrationtype": "FLK",
"utctime": "2015-07-04 11:00:26",
"username": "username",
"password": "password",
"memberno": "123",
"accountno": "123456789"
}
}
Response JSON Example (Version 1.0)
The following is an example of the JSON string to be returned.
{
"accountdetailresponse": {
"version": "1.0",
"transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
"utctime": "2015-07-04 11:00:27",
"status": "success",
"errordescription": "",
"account": [
{
"accountno": "123456789",
"accountname": "abcdef",
"branchno": "123",
"branchabbr": "abcde",
"address1": "123 here",
"address2": "",
"city": "There",
"state": "VA",
"zip": "24477",
"creditstatus": "good"
}
]
}
}