POST api/Nymcard/GetBalanceLimit

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BalanceLimitInfo
NameDescriptionTypeAdditional information
after

string

None.

has_more

boolean

None.

data

Collection of BalanceLimit

None.

Response Formats

application/json, text/json

Sample:
{
  "after": "sample string 1",
  "has_more": true,
  "data": [
    {
      "id": "sample string 1",
      "description": "sample string 2",
      "active": true,
      "type": "sample string 4",
      "min_amount": 5.1,
      "max_amount": 6.1,
      "currency": "sample string 7",
      "program_level": true,
      "created": "2024-10-01T10:01:00.7387805+00:00",
      "modified": "2024-10-01T10:01:00.7387805+00:00"
    },
    {
      "id": "sample string 1",
      "description": "sample string 2",
      "active": true,
      "type": "sample string 4",
      "min_amount": 5.1,
      "max_amount": 6.1,
      "currency": "sample string 7",
      "program_level": true,
      "created": "2024-10-01T10:01:00.7387805+00:00",
      "modified": "2024-10-01T10:01:00.7387805+00:00"
    }
  ]
}

application/xml, text/xml

Sample:
<BalanceLimitInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bankiom.Integrations.NYMCARD">
  <after>sample string 1</after>
  <data>
    <BalanceLimit>
      <active>true</active>
      <created>2024-10-01T10:01:00.7387805+00:00</created>
      <currency>sample string 7</currency>
      <description>sample string 2</description>
      <id>sample string 1</id>
      <max_amount>6.1</max_amount>
      <min_amount>5.1</min_amount>
      <modified>2024-10-01T10:01:00.7387805+00:00</modified>
      <program_level>true</program_level>
      <type>sample string 4</type>
    </BalanceLimit>
    <BalanceLimit>
      <active>true</active>
      <created>2024-10-01T10:01:00.7387805+00:00</created>
      <currency>sample string 7</currency>
      <description>sample string 2</description>
      <id>sample string 1</id>
      <max_amount>6.1</max_amount>
      <min_amount>5.1</min_amount>
      <modified>2024-10-01T10:01:00.7387805+00:00</modified>
      <program_level>true</program_level>
      <type>sample string 4</type>
    </BalanceLimit>
  </data>
  <has_more>true</has_more>
</BalanceLimitInfo>