How Can We Help?
< All Topics
Print

Account Search Transaction

The Account Search is used to request account numbers and names for a given search string.

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 search string.

{
   "accountsearchrequest": {
      "version": "1.0",
      "transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
      "integrationtype": "FLK",
      "utctime": "2015-07-04 11:00:26",
      "username": "username",
      "password": "password",
      "memberno": "123",
      "searchstring": "abc"
   }
}

Response JSON Example (Version 1.0)

The following is an example of the JSON string to be returned.

{
   "accountsearchresponse": {
      "version": "1.0",
      "transid": "f163bdef-0adb-4973-b5cb-0e94e7af8f72",
      "utctime": "2015-07-04 11:00:27",
      "status": "success",
      "errordescription": "",
      "accounts": [
         {
            "accountno": "123456",
            "accountname": "abc"
         },
         {
            "accountno": "789123456",
            "accountname": "abcdef"
         }
      ]
   }
}
Table of Contents