Accounts Detail
/GetAccountsDetail
returns you the following information about each of the accounts linked to the session:
Personal Information | Account Information | Transaction History |
---|---|---|
Name Address Civic Address City Province Postal Code PO Box Country Telephone Number | Title Balance Transit Number Institution Number Account Number Category and Type | Transaction Date Transaction Description Credit or Debit Amount Current Balance |
Calling for Data
Once a session is initiated via /Authorize
and you have a valid requestId
, it's possible to make a request for the data.
Pending Data Processing
The most common first response to get in a request for data returns a HTTP 202 FlinksCode: OPERATION_PENDING
, meaning that the data you're requesting is still being processed.
Here's an example of a typical API response for data pending processing:
{
"FlinksCode": "OPERATION_PENDING",
"Links": [...],
"HttpStatusCode": 202,
"Message": "Your operation is still processing",
"RequestId": "077785a3-fd0f-42f7-9251-ee2ff7f3b4ff"
}
Because of this, your server need to always expect and be able to handle this response and proceed to a async polling fashion call to receive the data, which is described in the next step.
You must always need to handle the 202 OPERATION_PENDING response.