POST api/AccountLookup
Request Information
URI Parameters
None.
Body Parameters
Jsonparams| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonstring | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"jsonstring": "sample string 1"
}
application/xml, text/xml
Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EfuluusToTayo.Models"> <jsonstring>sample string 1</jsonstring> </Jsonparams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AccountLookupResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | string |
None. |
|
| ResponseDescription | string |
None. |
|
| InstitutionId | string |
None. |
|
| InstitutionName | string |
None. |
|
| AccountNumber | string |
None. |
|
| AccountName | string |
None. |
|
| Result | Collection of ErrorLog |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": [
{
"Message": "sample string 1",
"Code": "sample string 2"
},
{
"Message": "sample string 1",
"Code": "sample string 2"
}
],
"Response": "sample string 1",
"ResponseDescription": "sample string 2",
"InstitutionId": "sample string 3",
"InstitutionName": "sample string 4",
"AccountNumber": "sample string 5",
"AccountName": "sample string 6"
}
application/xml, text/xml
Sample:
<AccountLookupResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EfuluusToTayo.Models">
<AccountName>sample string 6</AccountName>
<AccountNumber>sample string 5</AccountNumber>
<InstitutionId>sample string 3</InstitutionId>
<InstitutionName>sample string 4</InstitutionName>
<Response>sample string 1</Response>
<ResponseDescription>sample string 2</ResponseDescription>
<Result>
<ErrorLog>
<Code>sample string 2</Code>
<Message>sample string 1</Message>
</ErrorLog>
<ErrorLog>
<Code>sample string 2</Code>
<Message>sample string 1</Message>
</ErrorLog>
</Result>
</AccountLookupResponse>