api-examples icon indicating copy to clipboard operation
api-examples copied to clipboard

'otherAccountNumber': None,

Open emilbarmen opened this issue 8 years ago • 4 comments

Får ikke hentet ut informasjon fra otherAccountNumber for transaksjonsdata 'items': [{'accountNumber': 'XXXXXXXXXXX', 'accountingDate': '2018-02-05T00:00:00+01:00', 'amount': 100.0, 'customerId': '090294XXXXX', 'interestDate': '2018-02-05T00:00:00+01:00', 'otherAccountNumber': None, 'registrationDate': None, 'text': 'Nettgiro fra: Emil Barmen Betalt: 04.02.18', 'transactionId': '337164480501079672', 'transactionType': 'RKI'}], 'traceId': None}

emilbarmen avatar Feb 07 '18 09:02 emilbarmen

Hi Emilbarmen, we have a fix planned for this. Will notify you when it is available.

sbankenOB avatar Feb 23 '18 13:02 sbankenOB

@sbankenOB are you fixing registrationDate in the same fix? It also returnes null.

busemann avatar Feb 25 '18 22:02 busemann

Yes, it will be removed in version2

sbankenOB avatar Feb 28 '18 13:02 sbankenOB

The otherAccountNumber is still missing in V2. Does the v2 otherAccountNumber field only apply to new transactions?

Example transfer transaction:

    {
        "transactionId": "X",
        "accountingDate": "2018-02-26T00:00:00+01:00",
        "interestDate": "2018-02-25T00:00:00+01:00",
        "otherAccountNumberSpecified": false,
        "amount": -1000,
        "text": "Overf\u00f8ring mellom egne kontoer",
        "transactionType": "OVFNETTB",
        "transactionTypeCode": 200,
        "transactionTypeText": "OVFNETTB",
        "isReservation": false,
        "reservationType": null,
        "source": 1,
        "cardDetailsSpecified": false
    }

Example sending money to an account in an other bank:

    {
        "transactionId": "X",
        "accountingDate": "2018-02-16T00:00:00+01:00",
        "interestDate": "2018-02-16T00:00:00+01:00",
        "otherAccountNumberSpecified": false,
        "amount": -123,
        "text": "Til: X Betalt: 16.02.18",
        "transactionType": "NETTGIRO",
        "transactionTypeCode": 204,
        "transactionTypeText": "NETTGIRO",
        "isReservation": false,
        "reservationType": null,
        "source": 1,
        "cardDetailsSpecified": false
    }

HNygard avatar Mar 02 '18 18:03 HNygard