POST Cuentas/GetAccountDetails

Request Information

URI Parameters

None.

Body Parameters

GetAccountDetailsInput
NameDescriptionTypeAdditional information
ProductBankIdentifier

string

None.

ChannelId

integer

None.

TenantId

string

None.

UserLanguage

integer

None.

UserName

string

None.

IpAddress

string

None.

Location

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProductBankIdentifier": "sample string 1",
  "ChannelId": 2,
  "TenantId": "sample string 3",
  "UserLanguage": 4,
  "UserName": "sample string 5",
  "IpAddress": "sample string 6",
  "Location": "sample string 7"
}

application/xml, text/xml

Sample:
<GetAccountDetailsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input">
  <ChannelId>2</ChannelId>
  <IpAddress>sample string 6</IpAddress>
  <Location>sample string 7</Location>
  <TenantId>sample string 3</TenantId>
  <UserLanguage>4</UserLanguage>
  <UserName>sample string 5</UserName>
  <ProductBankIdentifier>sample string 1</ProductBankIdentifier>
</GetAccountDetailsInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetAccountDetailsResult
NameDescriptionTypeAdditional information
AccountBankIdentifier

string

None.

AccountOfficerName

string

None.

AccountCountableBalance

decimal number

None.

AccountAvailableBalance

decimal number

None.

AccountBalance24Hrs

decimal number

None.

AccountBalance48Hrs

decimal number

None.

AccountBalance48MoreHrs

decimal number

None.

MonthlyAverageBalance

decimal number

None.

PendingChecks

integer

None.

ChecksToReleaseToday

integer

None.

ChecksToReleaseTomorrow

integer

None.

CancelledChecks

integer

None.

CertifiedChecks

integer

None.

RejectedChecks

integer

None.

BlockedAmount

decimal number

None.

MovementsOfTheMonth

integer

None.

ChecksDrawn

integer

None.

Overdrafts

decimal number

None.

ProductBranchName

string

None.

ProductOwnerName

string

None.

ShowCurrentAccountChecksInformation

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "AccountBankIdentifier": "sample string 1",
  "AccountOfficerName": "sample string 2",
  "AccountCountableBalance": 3.0,
  "AccountAvailableBalance": 4.0,
  "AccountBalance24Hrs": 5.0,
  "AccountBalance48Hrs": 6.0,
  "AccountBalance48MoreHrs": 7.0,
  "MonthlyAverageBalance": 8.0,
  "PendingChecks": 9,
  "ChecksToReleaseToday": 10,
  "ChecksToReleaseTomorrow": 11,
  "CancelledChecks": 12,
  "CertifiedChecks": 13,
  "RejectedChecks": 14,
  "BlockedAmount": 15.0,
  "MovementsOfTheMonth": 16,
  "ChecksDrawn": 17,
  "Overdrafts": 18.0,
  "ProductBranchName": "sample string 19",
  "ProductOwnerName": "sample string 20",
  "ShowCurrentAccountChecksInformation": true
}

application/xml, text/xml

Sample:
<GetAccountDetailsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result">
  <AccountAvailableBalance>4</AccountAvailableBalance>
  <AccountBalance24Hrs>5</AccountBalance24Hrs>
  <AccountBalance48Hrs>6</AccountBalance48Hrs>
  <AccountBalance48MoreHrs>7</AccountBalance48MoreHrs>
  <AccountBankIdentifier>sample string 1</AccountBankIdentifier>
  <AccountCountableBalance>3</AccountCountableBalance>
  <AccountOfficerName>sample string 2</AccountOfficerName>
  <BlockedAmount>15</BlockedAmount>
  <CancelledChecks>12</CancelledChecks>
  <CertifiedChecks>13</CertifiedChecks>
  <ChecksDrawn>17</ChecksDrawn>
  <ChecksToReleaseToday>10</ChecksToReleaseToday>
  <ChecksToReleaseTomorrow>11</ChecksToReleaseTomorrow>
  <MonthlyAverageBalance>8</MonthlyAverageBalance>
  <MovementsOfTheMonth>16</MovementsOfTheMonth>
  <Overdrafts>18</Overdrafts>
  <PendingChecks>9</PendingChecks>
  <ProductBranchName>sample string 19</ProductBranchName>
  <ProductOwnerName>sample string 20</ProductOwnerName>
  <RejectedChecks>14</RejectedChecks>
  <ShowCurrentAccountChecksInformation>true</ShowCurrentAccountChecksInformation>
</GetAccountDetailsResult>