Read a bank transaction by bank transaction reference
Read details of a specific bank transaction identified by its unique bank transaction reference supplied by the bank.
        GET
    /banktransactions/{bankTransactionReference}
  
  curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/banktransactions/{bankTransactionReference}' \
 --header "Authorization: string"
        Response examples (200)
  
  
                    Bank transaction example minimal
      
        
  {
  "date": "2024-06-01",
  "type": "outbound",
  "amount": {
    "value": 1200,
    "currency": {
      "code": "NOK"
    }
  },
  "status": "created",
  "bankAccount": {
    "id": "123-456-789"
  },
  "paymentReference": {
    "type": "text",
    "value": "Payment for shipment AA-001."
  },
  "bankTransactionReference": "10001-987-654-321"
}{
  "date": "2024-06-01",
  "type": "outbound",
  "amount": {
    "value": 1200,
    "currency": {
      "code": "NOK"
    }
  },
  "status": "created",
  "createdAt": "2024-06-01T18:00:00Z",
  "modifiedAt": "2024-06-31T18:00:00Z",
  "bankAccount": {
    "id": "123-456-789"
  },
  "toBankAccount": {
    "type": "iban",
    "number": "987654321"
  },
  "fromBankAccount": {
    "type": "bban",
    "number": "123456789"
  },
  "paymentReference": {
    "type": "text",
    "value": "Payment for shipment AA-001."
  },
  "bankTransactionCode": {
    "domainCode": "D001",
    "familyCode": "F002",
    "subFamilyCode": "SF003"
  },
  "bankTransactionReference": "10001-987-654-321"
}