Read card account details

GET /v1/card-accounts/{accountId}

Path parameters

Responses

  • default application/json

    default response

    Hide response attribute Show response attribute object
    • cardAccount object Required
      Hide cardAccount attributes Show cardAccount attributes
      • maskedPan string Required

        Minimum length is 0, maximum length is 35.

      • currency string Required

        Format should match the following pattern: [A-Z]{3}.

      • resourceId string Required
      • ownerName string Required

        Minimum length is 0, maximum length is 140.

      • name string Required

        Minimum length is 0, maximum length is 70.

      • displayName string Required

        Minimum length is 0, maximum length is 70.

      • product string Required

        Minimum length is 0, maximum length is 35.

      • debitAccounting boolean Required
      • status string Required

        Values are enabled, deleted, or blocked.

      • usage string Required

        Minimum length is 0, maximum length is 4. Values are PRIV or ORGA.

      • creditLimit object Required
        Hide creditLimit attributes Show creditLimit attributes
        • currency string Required

          Format should match the following pattern: [A-Z]{3}.

        • amount string Required

          Format should match the following pattern: -?[0-9]{1,14}(\.[0-9]{1,3})?.

      • balances array[object]
        Hide balances attributes Show balances attributes object
        • balanceAmount object Required
          Hide balanceAmount attributes Show balanceAmount attributes
          • currency string Required

            Format should match the following pattern: [A-Z]{3}.

          • amount string Required

            Format should match the following pattern: -?[0-9]{1,14}(\.[0-9]{1,3})?.

        • balanceType string Required

          Values are closingBooked, expected, openingBooked, interimAvailable, interimBooked, forwardAvailable, or nonInvoiced.

        • creditLimitIncluded boolean Required
        • referenceDate string(date) Required
GET /v1/card-accounts/{accountId}
curl \
 -X GET https://api.memo.bank/nextgenpsd2/v1/card-accounts/{accountId} \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Signature: $SIGNATURE"
Response examples (default)
{
  "cardAccount": {
    "maskedPan": "string",
    "currency": "string",
    "resourceId": "string",
    "ownerName": "string",
    "name": "string",
    "displayName": "string",
    "product": "string",
    "debitAccounting": true,
    "status": "enabled",
    "usage": "PRIV",
    "creditLimit": {
      "currency": "string",
      "amount": "string"
    },
    "balances": [
      {
        "balanceAmount": {
          "currency": "string",
          "amount": "string"
        },
        "balanceType": "closingBooked",
        "creditLimitIncluded": true,
        "referenceDate": "2024-05-04"
      }
    ],
    "_links": {
      "balances": {
        "href": "string"
      },
      "transactions": {
        "href": "string"
      }
    }
  }
}