fortnox-api 0.7.2 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (201) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +1 -0
  3. data/.rubocop.yml +1 -1
  4. data/.tool-versions +1 -0
  5. data/.travis.yml +5 -10
  6. data/CHANGELOG.md +45 -1
  7. data/README.md +7 -4
  8. data/Rakefile +5 -0
  9. data/fortnox-api.gemspec +22 -17
  10. data/lib/fortnox/api/mappers/article.rb +1 -1
  11. data/lib/fortnox/api/mappers/base/from_json.rb +3 -3
  12. data/lib/fortnox/api/mappers/base/to_json.rb +2 -2
  13. data/lib/fortnox/api/mappers/base.rb +3 -3
  14. data/lib/fortnox/api/mappers/customer.rb +1 -1
  15. data/lib/fortnox/api/mappers/default_delivery_types.rb +1 -1
  16. data/lib/fortnox/api/mappers/default_templates.rb +1 -1
  17. data/lib/fortnox/api/mappers/edi_information.rb +1 -1
  18. data/lib/fortnox/api/mappers/email_information.rb +1 -1
  19. data/lib/fortnox/api/mappers/invoice.rb +4 -4
  20. data/lib/fortnox/api/mappers/invoice_row.rb +1 -1
  21. data/lib/fortnox/api/mappers/order.rb +4 -4
  22. data/lib/fortnox/api/mappers/order_row.rb +1 -1
  23. data/lib/fortnox/api/mappers/project.rb +1 -1
  24. data/lib/fortnox/api/mappers/terms_of_payment.rb +1 -1
  25. data/lib/fortnox/api/mappers/unit.rb +1 -1
  26. data/lib/fortnox/api/mappers/value/country_string.rb +1 -1
  27. data/lib/fortnox/api/mappers.rb +18 -18
  28. data/lib/fortnox/api/models/article.rb +2 -2
  29. data/lib/fortnox/api/models/base.rb +14 -14
  30. data/lib/fortnox/api/models/customer.rb +2 -2
  31. data/lib/fortnox/api/models/document.rb +5 -2
  32. data/lib/fortnox/api/models/invoice.rb +2 -2
  33. data/lib/fortnox/api/models/label.rb +1 -1
  34. data/lib/fortnox/api/models/order.rb +2 -2
  35. data/lib/fortnox/api/models/project.rb +2 -2
  36. data/lib/fortnox/api/models/terms_of_payment.rb +2 -2
  37. data/lib/fortnox/api/models/unit.rb +2 -2
  38. data/lib/fortnox/api/models.rb +7 -7
  39. data/lib/fortnox/api/repositories/article.rb +3 -3
  40. data/lib/fortnox/api/repositories/base.rb +4 -3
  41. data/lib/fortnox/api/repositories/customer.rb +3 -3
  42. data/lib/fortnox/api/repositories/invoice.rb +3 -3
  43. data/lib/fortnox/api/repositories/order.rb +3 -3
  44. data/lib/fortnox/api/repositories/project.rb +3 -3
  45. data/lib/fortnox/api/repositories/terms_of_payment.rb +3 -3
  46. data/lib/fortnox/api/repositories/unit.rb +3 -3
  47. data/lib/fortnox/api/repositories.rb +7 -7
  48. data/lib/fortnox/api/types/default_delivery_types.rb +0 -2
  49. data/lib/fortnox/api/types/default_templates.rb +0 -2
  50. data/lib/fortnox/api/types/edi_information.rb +0 -2
  51. data/lib/fortnox/api/types/email_information.rb +0 -2
  52. data/lib/fortnox/api/types/enums.rb +36 -8
  53. data/lib/fortnox/api/types/invoice_row.rb +1 -1
  54. data/lib/fortnox/api/types/model.rb +4 -6
  55. data/lib/fortnox/api/types/nullable.rb +13 -9
  56. data/lib/fortnox/api/types/order_row.rb +1 -1
  57. data/lib/fortnox/api/types/required.rb +3 -3
  58. data/lib/fortnox/api/types/sized.rb +2 -2
  59. data/lib/fortnox/api/types.rb +23 -23
  60. data/lib/fortnox/api/version.rb +1 -1
  61. data/lib/fortnox/api.rb +18 -16
  62. data/spec/fortnox/api/circular_queue_spec.rb +3 -3
  63. data/spec/fortnox/api/mappers/base/canonical_name_sym_spec.rb +9 -7
  64. data/spec/fortnox/api/mappers/default_delivery_types_spec.rb +1 -1
  65. data/spec/fortnox/api/mappers/examples/mapper.rb +1 -1
  66. data/spec/fortnox/api/models/base_spec.rb +8 -8
  67. data/spec/fortnox/api/repositories/article_spec.rb +2 -2
  68. data/spec/fortnox/api/repositories/base_spec.rb +4 -12
  69. data/spec/fortnox/api/repositories/customer_spec.rb +1 -1
  70. data/spec/fortnox/api/repositories/invoice_spec.rb +13 -19
  71. data/spec/fortnox/api/repositories/project_spec.rb +1 -1
  72. data/spec/fortnox/api/repositories/terms_of_payment_spec.rb +2 -2
  73. data/spec/fortnox/api/repositories/unit_spec.rb +3 -3
  74. data/spec/fortnox/api/types/enums_spec.rb +1 -0
  75. data/spec/fortnox/api/types/housework_types_spec.rb +122 -34
  76. data/spec/fortnox/api/types/model_spec.rb +11 -17
  77. data/spec/fortnox/api/types/nullable_spec.rb +30 -10
  78. data/spec/fortnox/api/types/required_spec.rb +1 -4
  79. data/spec/support/matchers/type/enum_matcher.rb +1 -1
  80. data/spec/support/matchers/type/have_account_number_matcher.rb +1 -1
  81. data/spec/support/matchers/type/have_email_matcher.rb +1 -1
  82. data/spec/support/matchers/type/have_nullable_date_matcher.rb +5 -5
  83. data/spec/support/matchers/type/have_nullable_string_matcher.rb +3 -3
  84. data/spec/vcr_cassettes/articles/all.yml +43 -17
  85. data/spec/vcr_cassettes/articles/find_by_hash_failure.yml +34 -15
  86. data/spec/vcr_cassettes/articles/find_failure.yml +34 -15
  87. data/spec/vcr_cassettes/articles/find_id_1.yml +35 -16
  88. data/spec/vcr_cassettes/articles/find_new.yml +37 -18
  89. data/spec/vcr_cassettes/articles/multi_param_find_by_hash.yml +34 -15
  90. data/spec/vcr_cassettes/articles/save_new.yml +35 -15
  91. data/spec/vcr_cassettes/articles/save_old.yml +37 -18
  92. data/spec/vcr_cassettes/articles/save_with_specially_named_attribute.yml +35 -15
  93. data/spec/vcr_cassettes/articles/search_by_name.yml +34 -15
  94. data/spec/vcr_cassettes/articles/search_miss.yml +34 -15
  95. data/spec/vcr_cassettes/articles/search_with_special_char.yml +34 -15
  96. data/spec/vcr_cassettes/articles/single_param_find_by_hash.yml +38 -18
  97. data/spec/vcr_cassettes/customers/all.yml +36 -17
  98. data/spec/vcr_cassettes/customers/find_by_hash_failure.yml +34 -15
  99. data/spec/vcr_cassettes/customers/find_failure.yml +34 -15
  100. data/spec/vcr_cassettes/customers/find_id_1.yml +34 -15
  101. data/spec/vcr_cassettes/customers/find_new.yml +36 -17
  102. data/spec/vcr_cassettes/customers/multi_param_find_by_hash.yml +34 -15
  103. data/spec/vcr_cassettes/customers/save_new.yml +34 -14
  104. data/spec/vcr_cassettes/customers/save_new_with_country_code_SE.yml +30 -20
  105. data/spec/vcr_cassettes/customers/save_old.yml +36 -17
  106. data/spec/vcr_cassettes/customers/save_with_specially_named_attribute.yml +34 -14
  107. data/spec/vcr_cassettes/customers/search_by_name.yml +38 -16
  108. data/spec/vcr_cassettes/customers/search_miss.yml +34 -15
  109. data/spec/vcr_cassettes/customers/search_with_special_char.yml +34 -15
  110. data/spec/vcr_cassettes/customers/single_param_find_by_hash.yml +34 -15
  111. data/spec/vcr_cassettes/invoices/all.yml +39 -17
  112. data/spec/vcr_cassettes/invoices/filter_hit.yml +34 -15
  113. data/spec/vcr_cassettes/invoices/filter_invalid.yml +33 -13
  114. data/spec/vcr_cassettes/invoices/find_by_hash_failure.yml +34 -15
  115. data/spec/vcr_cassettes/invoices/find_failure.yml +34 -15
  116. data/spec/vcr_cassettes/invoices/find_id_1.yml +36 -17
  117. data/spec/vcr_cassettes/invoices/find_new.yml +39 -20
  118. data/spec/vcr_cassettes/invoices/multi_param_find_by_hash.yml +34 -15
  119. data/spec/vcr_cassettes/invoices/save_new.yml +37 -17
  120. data/spec/vcr_cassettes/invoices/save_new_with_comments.yml +37 -17
  121. data/spec/vcr_cassettes/invoices/save_new_with_country.yml +32 -22
  122. data/spec/vcr_cassettes/invoices/save_new_with_country_GB.yml +33 -23
  123. data/spec/vcr_cassettes/invoices/save_new_with_country_Norge.yml +32 -22
  124. data/spec/vcr_cassettes/invoices/save_new_with_country_Norway.yml +32 -22
  125. data/spec/vcr_cassettes/invoices/save_new_with_country_Sverige.yml +32 -22
  126. data/spec/vcr_cassettes/invoices/save_new_with_country_VA.yml +33 -23
  127. data/spec/vcr_cassettes/invoices/save_new_with_country_VI.yml +33 -23
  128. data/spec/vcr_cassettes/invoices/save_new_with_country_empty_string.yml +32 -22
  129. data/spec/vcr_cassettes/invoices/save_new_with_country_nil.yml +32 -22
  130. data/spec/vcr_cassettes/invoices/save_old.yml +39 -20
  131. data/spec/vcr_cassettes/invoices/save_old_with_empty_comments.yml +39 -20
  132. data/spec/vcr_cassettes/invoices/save_old_with_empty_country.yml +34 -25
  133. data/spec/vcr_cassettes/invoices/save_old_with_nil_comments.yml +39 -20
  134. data/spec/vcr_cassettes/invoices/save_old_with_nil_country.yml +34 -25
  135. data/spec/vcr_cassettes/invoices/save_with_nested_model.yml +36 -16
  136. data/spec/vcr_cassettes/invoices/save_with_specially_named_attribute.yml +36 -16
  137. data/spec/vcr_cassettes/invoices/search_by_name.yml +34 -15
  138. data/spec/vcr_cassettes/invoices/search_miss.yml +34 -15
  139. data/spec/vcr_cassettes/invoices/search_with_special_char.yml +34 -15
  140. data/spec/vcr_cassettes/invoices/single_param_find_by_hash.yml +34 -15
  141. data/spec/vcr_cassettes/orders/all.yml +35 -16
  142. data/spec/vcr_cassettes/orders/filter_hit.yml +34 -15
  143. data/spec/vcr_cassettes/orders/filter_invalid.yml +33 -13
  144. data/spec/vcr_cassettes/orders/find_by_hash_failure.yml +34 -15
  145. data/spec/vcr_cassettes/orders/find_failure.yml +34 -15
  146. data/spec/vcr_cassettes/orders/find_id_1.yml +35 -16
  147. data/spec/vcr_cassettes/orders/find_new.yml +38 -19
  148. data/spec/vcr_cassettes/orders/housework_invalid_tax_reduction_type.yml +63 -0
  149. data/spec/vcr_cassettes/orders/housework_othercoses_invalid.yml +63 -0
  150. data/spec/vcr_cassettes/orders/housework_type_babysitting.yml +37 -17
  151. data/spec/vcr_cassettes/orders/housework_type_cleaning.yml +37 -17
  152. data/spec/vcr_cassettes/orders/housework_type_construction.yml +37 -17
  153. data/spec/vcr_cassettes/orders/housework_type_cooking.yml +34 -14
  154. data/spec/vcr_cassettes/orders/housework_type_electricity.yml +37 -17
  155. data/spec/vcr_cassettes/orders/housework_type_gardening.yml +37 -17
  156. data/spec/vcr_cassettes/orders/housework_type_glassmetalwork.yml +37 -17
  157. data/spec/vcr_cassettes/orders/housework_type_grounddrainagework.yml +37 -17
  158. data/spec/vcr_cassettes/orders/housework_type_hvac.yml +37 -17
  159. data/spec/vcr_cassettes/orders/housework_type_itservices.yml +66 -0
  160. data/spec/vcr_cassettes/orders/housework_type_majorappliancerepair.yml +66 -0
  161. data/spec/vcr_cassettes/orders/housework_type_masonry.yml +37 -17
  162. data/spec/vcr_cassettes/orders/housework_type_movingservices.yml +66 -0
  163. data/spec/vcr_cassettes/orders/housework_type_othercare.yml +37 -17
  164. data/spec/vcr_cassettes/orders/housework_type_othercosts.yml +37 -17
  165. data/spec/vcr_cassettes/orders/housework_type_paintingwallpapering.yml +37 -17
  166. data/spec/vcr_cassettes/orders/housework_type_snowplowing.yml +37 -17
  167. data/spec/vcr_cassettes/orders/housework_type_textileclothing.yml +37 -17
  168. data/spec/vcr_cassettes/orders/housework_type_tutoring.yml +34 -14
  169. data/spec/vcr_cassettes/orders/multi_param_find_by_hash.yml +34 -15
  170. data/spec/vcr_cassettes/orders/save_new.yml +36 -16
  171. data/spec/vcr_cassettes/orders/save_old.yml +38 -19
  172. data/spec/vcr_cassettes/orders/save_with_nested_model.yml +36 -16
  173. data/spec/vcr_cassettes/orders/search_by_name.yml +34 -15
  174. data/spec/vcr_cassettes/orders/search_miss.yml +34 -15
  175. data/spec/vcr_cassettes/orders/search_with_special_char.yml +34 -15
  176. data/spec/vcr_cassettes/orders/single_param_find_by_hash.yml +34 -15
  177. data/spec/vcr_cassettes/projects/all.yml +58 -33
  178. data/spec/vcr_cassettes/projects/find_by_hash_failure.yml +34 -15
  179. data/spec/vcr_cassettes/projects/find_failure.yml +34 -15
  180. data/spec/vcr_cassettes/projects/find_id_1.yml +34 -15
  181. data/spec/vcr_cassettes/projects/find_new.yml +37 -18
  182. data/spec/vcr_cassettes/projects/multi_param_find_by_hash.yml +36 -17
  183. data/spec/vcr_cassettes/projects/save_new.yml +35 -15
  184. data/spec/vcr_cassettes/projects/save_old.yml +37 -18
  185. data/spec/vcr_cassettes/projects/single_param_find_by_hash.yml +36 -17
  186. data/spec/vcr_cassettes/termsofpayments/all.yml +46 -25
  187. data/spec/vcr_cassettes/termsofpayments/find_failure.yml +34 -15
  188. data/spec/vcr_cassettes/termsofpayments/find_id_1.yml +35 -16
  189. data/spec/vcr_cassettes/termsofpayments/find_new.yml +36 -17
  190. data/spec/vcr_cassettes/termsofpayments/save_new.yml +35 -15
  191. data/spec/vcr_cassettes/termsofpayments/save_old.yml +36 -17
  192. data/spec/vcr_cassettes/units/all.yml +45 -22
  193. data/spec/vcr_cassettes/units/find_failure.yml +34 -15
  194. data/spec/vcr_cassettes/units/find_id_1.yml +35 -16
  195. data/spec/vcr_cassettes/units/find_new.yml +36 -17
  196. data/spec/vcr_cassettes/units/save_new.yml +35 -15
  197. data/spec/vcr_cassettes/units/save_old.yml +36 -17
  198. data/spec/vcr_cassettes/units/save_with_specially_named_attribute.yml +35 -15
  199. metadata +115 -43
  200. data/spec/support/helpers/dummy_class_helper.rb +0 -38
  201. data/spec/vcr_cassettes/invoices/save_new_with_country_KR.yml +0 -57
@@ -15,42 +15,52 @@ http_interactions:
15
15
  - 9aBA8ZgsvR
16
16
  Access-Token:
17
17
  - ccaef817-d5d8-4b1c-a316-54f3e55c5c54
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ User-Agent:
21
+ - Ruby
18
22
  response:
19
23
  status:
20
24
  code: 201
21
25
  message: Created
22
26
  headers:
23
- Server:
24
- - nginx
25
- Date:
26
- - Sun, 01 Sep 2019 07:02:15 GMT
27
27
  Content-Type:
28
28
  - application/json
29
- Connection:
30
- - close
29
+ Date:
30
+ - Mon, 22 Jan 2024 14:54:33 GMT
31
31
  Location:
32
32
  - invoices
33
+ X-Build:
34
+ - 9dd4e26746
35
+ X-Frame-Options:
36
+ - sameorigin
33
37
  X-Rack-Responsetime:
34
- - '791'
38
+ - '133'
35
39
  X-Uid:
36
- - e6e29282
37
- X-Build:
38
- - b1e7c74853
39
- Strict-Transport-Security:
40
- - max-age=31536000; includeSubdomains
41
- X-Xss-Protection:
42
- - 1; mode=block
40
+ - e3ce1236
41
+ Transfer-Encoding:
42
+ - chunked
43
+ Server:
44
+ - Fortnox
43
45
  X-Content-Type-Options:
44
46
  - nosniff
45
- X-Frame-Options:
46
- - sameorigin
47
+ X-Xss-Protection:
48
+ - '0'
47
49
  Referrer-Policy:
48
50
  - strict-origin-when-cross-origin
51
+ Content-Security-Policy:
52
+ - 'upgrade-insecure-requests;frame-ancestors https://*.fortnox.se;report-uri
53
+ /api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
54
+ *.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
55
+ s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
56
+ fonts.gstatic.com fortnox.piwik.pro api.cling.se wss://api.cling.se ''unsafe-inline''
57
+ ''unsafe-eval'' blob: data:'
58
+ Strict-Transport-Security:
59
+ - max-age=31536000; includeSubdomains
49
60
  body:
50
61
  encoding: UTF-8
51
- string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/135","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=135","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":0,"ContributionPercent":0,"ContributionValue":0,"Country":"Norway","CostCenter":"","Credit":"false","CreditInvoiceReference":0,"Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
52
- name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"135","DueDate":"2019-09-01","EDIInformation":{"EDIGlobalLocationNumber":"","EDIGlobalLocationNumberDelivery":"","EDIInvoiceExtra1":"","EDIInvoiceExtra2":"","EDIOurElectronicReference":"","EDIYourElectronicReference":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
53
- {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2019-09-01","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":0,"InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"13557","OfferReference":0,"OrderReference":0,"OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2019-09-01","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":0,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null}}'
54
- http_version:
55
- recorded_at: Sun, 01 Sep 2019 07:02:15 GMT
56
- recorded_with: VCR 4.0.0
62
+ string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/193","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=193","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":"0","ContributionPercent":0,"ContributionValue":0,"Country":"Norway","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
63
+ name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"193","DueDate":"2024-01-22","EDIInformation":{"EDIGlobalLocationNumber":null,"EDIGlobalLocationNumberDelivery":null,"EDIInvoiceExtra1":null,"EDIInvoiceExtra2":null,"EDIOurElectronicReference":null,"EDIYourElectronicReference":null,"EDIStatus":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
64
+ {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2024-01-22","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"19356","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2024-01-22","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","TimeBasisReference":null,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null,"TaxReductionType":"none"}}'
65
+ recorded_at: Mon, 22 Jan 2024 14:54:33 GMT
66
+ recorded_with: VCR 6.2.0
@@ -15,42 +15,52 @@ http_interactions:
15
15
  - 9aBA8ZgsvR
16
16
  Access-Token:
17
17
  - ccaef817-d5d8-4b1c-a316-54f3e55c5c54
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ User-Agent:
21
+ - Ruby
18
22
  response:
19
23
  status:
20
24
  code: 201
21
25
  message: Created
22
26
  headers:
23
- Server:
24
- - nginx
25
- Date:
26
- - Sun, 01 Sep 2019 07:02:19 GMT
27
27
  Content-Type:
28
28
  - application/json
29
- Connection:
30
- - close
29
+ Date:
30
+ - Mon, 22 Jan 2024 14:54:34 GMT
31
31
  Location:
32
32
  - invoices
33
+ X-Build:
34
+ - 9dd4e26746
35
+ X-Frame-Options:
36
+ - sameorigin
33
37
  X-Rack-Responsetime:
34
- - '100'
38
+ - '140'
35
39
  X-Uid:
36
- - f9f8084d
37
- X-Build:
38
- - b1e7c74853
39
- Strict-Transport-Security:
40
- - max-age=31536000; includeSubdomains
41
- X-Xss-Protection:
42
- - 1; mode=block
40
+ - 737c49a3
41
+ Transfer-Encoding:
42
+ - chunked
43
+ Server:
44
+ - Fortnox
43
45
  X-Content-Type-Options:
44
46
  - nosniff
45
- X-Frame-Options:
46
- - sameorigin
47
+ X-Xss-Protection:
48
+ - '0'
47
49
  Referrer-Policy:
48
50
  - strict-origin-when-cross-origin
51
+ Content-Security-Policy:
52
+ - 'upgrade-insecure-requests;frame-ancestors https://*.fortnox.se;report-uri
53
+ /api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
54
+ *.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
55
+ s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
56
+ fonts.gstatic.com fortnox.piwik.pro api.cling.se wss://api.cling.se ''unsafe-inline''
57
+ ''unsafe-eval'' blob: data:'
58
+ Strict-Transport-Security:
59
+ - max-age=31536000; includeSubdomains
49
60
  body:
50
61
  encoding: UTF-8
51
- string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/143","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=143","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":0,"ContributionPercent":0,"ContributionValue":0,"Country":"Sverige","CostCenter":"","Credit":"false","CreditInvoiceReference":0,"Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
52
- name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"143","DueDate":"2019-09-01","EDIInformation":{"EDIGlobalLocationNumber":"","EDIGlobalLocationNumberDelivery":"","EDIInvoiceExtra1":"","EDIInvoiceExtra2":"","EDIOurElectronicReference":"","EDIYourElectronicReference":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
53
- {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2019-09-01","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":0,"InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"14357","OfferReference":0,"OrderReference":0,"OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2019-09-01","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":0,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null}}'
54
- http_version:
55
- recorded_at: Sun, 01 Sep 2019 07:02:19 GMT
56
- recorded_with: VCR 4.0.0
62
+ string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/199","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=199","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":"0","ContributionPercent":0,"ContributionValue":0,"Country":"Sverige","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
63
+ name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"199","DueDate":"2024-01-22","EDIInformation":{"EDIGlobalLocationNumber":null,"EDIGlobalLocationNumberDelivery":null,"EDIInvoiceExtra1":null,"EDIInvoiceExtra2":null,"EDIOurElectronicReference":null,"EDIYourElectronicReference":null,"EDIStatus":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
64
+ {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2024-01-22","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"19950","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2024-01-22","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","TimeBasisReference":null,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null,"TaxReductionType":"none"}}'
65
+ recorded_at: Mon, 22 Jan 2024 14:54:34 GMT
66
+ recorded_with: VCR 6.2.0
@@ -15,43 +15,53 @@ http_interactions:
15
15
  - 9aBA8ZgsvR
16
16
  Access-Token:
17
17
  - ccaef817-d5d8-4b1c-a316-54f3e55c5c54
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ User-Agent:
21
+ - Ruby
18
22
  response:
19
23
  status:
20
24
  code: 201
21
25
  message: Created
22
26
  headers:
23
- Server:
24
- - nginx
25
- Date:
26
- - Sun, 01 Sep 2019 07:02:18 GMT
27
27
  Content-Type:
28
28
  - application/json
29
- Connection:
30
- - close
29
+ Date:
30
+ - Mon, 22 Jan 2024 14:52:54 GMT
31
31
  Location:
32
32
  - invoices
33
+ X-Build:
34
+ - 9dd4e26746
35
+ X-Frame-Options:
36
+ - sameorigin
33
37
  X-Rack-Responsetime:
34
- - '115'
38
+ - '131'
35
39
  X-Uid:
36
- - 80dd3b8b
37
- X-Build:
38
- - b1e7c74853
39
- Strict-Transport-Security:
40
- - max-age=31536000; includeSubdomains
41
- X-Xss-Protection:
42
- - 1; mode=block
40
+ - 5ecb2576
41
+ Transfer-Encoding:
42
+ - chunked
43
+ Server:
44
+ - Fortnox
43
45
  X-Content-Type-Options:
44
46
  - nosniff
45
- X-Frame-Options:
46
- - sameorigin
47
+ X-Xss-Protection:
48
+ - '0'
47
49
  Referrer-Policy:
48
50
  - strict-origin-when-cross-origin
51
+ Content-Security-Policy:
52
+ - 'upgrade-insecure-requests;frame-ancestors https://*.fortnox.se;report-uri
53
+ /api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
54
+ *.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
55
+ s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
56
+ fonts.gstatic.com fortnox.piwik.pro api.cling.se wss://api.cling.se ''unsafe-inline''
57
+ ''unsafe-eval'' blob: data:'
58
+ Strict-Transport-Security:
59
+ - max-age=31536000; includeSubdomains
49
60
  body:
50
61
  encoding: UTF-8
51
- string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/141","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=141","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":0,"ContributionPercent":0,"ContributionValue":0,"Country":"Holy
52
- See (Vatican City State)","CostCenter":"","Credit":"false","CreditInvoiceReference":0,"Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
53
- name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"141","DueDate":"2019-09-01","EDIInformation":{"EDIGlobalLocationNumber":"","EDIGlobalLocationNumberDelivery":"","EDIInvoiceExtra1":"","EDIInvoiceExtra2":"","EDIOurElectronicReference":"","EDIYourElectronicReference":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
54
- {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2019-09-01","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":0,"InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"14159","OfferReference":0,"OrderReference":0,"OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2019-09-01","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":0,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null}}'
55
- http_version:
56
- recorded_at: Sun, 01 Sep 2019 07:02:18 GMT
57
- recorded_with: VCR 4.0.0
62
+ string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/192","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=192","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":"0","ContributionPercent":0,"ContributionValue":0,"Country":"Holy
63
+ See (Vatican City State)","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
64
+ name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"192","DueDate":"2024-01-22","EDIInformation":{"EDIGlobalLocationNumber":null,"EDIGlobalLocationNumberDelivery":null,"EDIInvoiceExtra1":null,"EDIInvoiceExtra2":null,"EDIOurElectronicReference":null,"EDIYourElectronicReference":null,"EDIStatus":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
65
+ {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2024-01-22","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"19257","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2024-01-22","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","TimeBasisReference":null,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null,"TaxReductionType":"none"}}'
66
+ recorded_at: Mon, 22 Jan 2024 14:52:54 GMT
67
+ recorded_with: VCR 6.2.0
@@ -15,43 +15,53 @@ http_interactions:
15
15
  - 9aBA8ZgsvR
16
16
  Access-Token:
17
17
  - ccaef817-d5d8-4b1c-a316-54f3e55c5c54
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ User-Agent:
21
+ - Ruby
18
22
  response:
19
23
  status:
20
24
  code: 201
21
25
  message: Created
22
26
  headers:
23
- Server:
24
- - nginx
25
- Date:
26
- - Sun, 01 Sep 2019 07:02:18 GMT
27
27
  Content-Type:
28
28
  - application/json
29
- Connection:
30
- - close
29
+ Date:
30
+ - Mon, 22 Jan 2024 14:54:34 GMT
31
31
  Location:
32
32
  - invoices
33
+ X-Build:
34
+ - 9dd4e26746
35
+ X-Frame-Options:
36
+ - sameorigin
33
37
  X-Rack-Responsetime:
34
- - '115'
38
+ - '142'
35
39
  X-Uid:
36
- - 0e1d81c4
37
- X-Build:
38
- - b1e7c74853
39
- Strict-Transport-Security:
40
- - max-age=31536000; includeSubdomains
41
- X-Xss-Protection:
42
- - 1; mode=block
40
+ - 264e9a6d
41
+ Transfer-Encoding:
42
+ - chunked
43
+ Server:
44
+ - Fortnox
43
45
  X-Content-Type-Options:
44
46
  - nosniff
45
- X-Frame-Options:
46
- - sameorigin
47
+ X-Xss-Protection:
48
+ - '0'
47
49
  Referrer-Policy:
48
50
  - strict-origin-when-cross-origin
51
+ Content-Security-Policy:
52
+ - 'upgrade-insecure-requests;frame-ancestors https://*.fortnox.se;report-uri
53
+ /api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
54
+ *.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
55
+ s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
56
+ fonts.gstatic.com fortnox.piwik.pro api.cling.se wss://api.cling.se ''unsafe-inline''
57
+ ''unsafe-eval'' blob: data:'
58
+ Strict-Transport-Security:
59
+ - max-age=31536000; includeSubdomains
49
60
  body:
50
61
  encoding: UTF-8
51
- string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/142","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=142","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":0,"ContributionPercent":0,"ContributionValue":0,"Country":"Virgin
52
- Islands, U.S.","CostCenter":"","Credit":"false","CreditInvoiceReference":0,"Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
53
- name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"142","DueDate":"2019-09-01","EDIInformation":{"EDIGlobalLocationNumber":"","EDIGlobalLocationNumberDelivery":"","EDIInvoiceExtra1":"","EDIInvoiceExtra2":"","EDIOurElectronicReference":"","EDIYourElectronicReference":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
54
- {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2019-09-01","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":0,"InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"14258","OfferReference":0,"OrderReference":0,"OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2019-09-01","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":0,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null}}'
55
- http_version:
56
- recorded_at: Sun, 01 Sep 2019 07:02:18 GMT
57
- recorded_with: VCR 4.0.0
62
+ string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/198","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=198","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":"0","ContributionPercent":0,"ContributionValue":0,"Country":"Virgin
63
+ Islands, U.S.","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
64
+ name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"198","DueDate":"2024-01-22","EDIInformation":{"EDIGlobalLocationNumber":null,"EDIGlobalLocationNumberDelivery":null,"EDIInvoiceExtra1":null,"EDIInvoiceExtra2":null,"EDIOurElectronicReference":null,"EDIYourElectronicReference":null,"EDIStatus":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
65
+ {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2024-01-22","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"19851","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2024-01-22","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","TimeBasisReference":null,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null,"TaxReductionType":"none"}}'
66
+ recorded_at: Mon, 22 Jan 2024 14:54:34 GMT
67
+ recorded_with: VCR 6.2.0
@@ -15,42 +15,52 @@ http_interactions:
15
15
  - 9aBA8ZgsvR
16
16
  Access-Token:
17
17
  - ccaef817-d5d8-4b1c-a316-54f3e55c5c54
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ User-Agent:
21
+ - Ruby
18
22
  response:
19
23
  status:
20
24
  code: 201
21
25
  message: Created
22
26
  headers:
23
- Server:
24
- - nginx
25
- Date:
26
- - Sun, 01 Sep 2019 07:02:17 GMT
27
27
  Content-Type:
28
28
  - application/json
29
- Connection:
30
- - close
29
+ Date:
30
+ - Mon, 22 Jan 2024 14:54:33 GMT
31
31
  Location:
32
32
  - invoices
33
+ X-Build:
34
+ - 9dd4e26746
35
+ X-Frame-Options:
36
+ - sameorigin
33
37
  X-Rack-Responsetime:
34
- - '123'
38
+ - '151'
35
39
  X-Uid:
36
- - e1012189
37
- X-Build:
38
- - b1e7c74853
39
- Strict-Transport-Security:
40
- - max-age=31536000; includeSubdomains
41
- X-Xss-Protection:
42
- - 1; mode=block
40
+ - b18aaf64
41
+ Transfer-Encoding:
42
+ - chunked
43
+ Server:
44
+ - Fortnox
43
45
  X-Content-Type-Options:
44
46
  - nosniff
45
- X-Frame-Options:
46
- - sameorigin
47
+ X-Xss-Protection:
48
+ - '0'
47
49
  Referrer-Policy:
48
50
  - strict-origin-when-cross-origin
51
+ Content-Security-Policy:
52
+ - 'upgrade-insecure-requests;frame-ancestors https://*.fortnox.se;report-uri
53
+ /api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
54
+ *.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
55
+ s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
56
+ fonts.gstatic.com fortnox.piwik.pro api.cling.se wss://api.cling.se ''unsafe-inline''
57
+ ''unsafe-eval'' blob: data:'
58
+ Strict-Transport-Security:
59
+ - max-age=31536000; includeSubdomains
49
60
  body:
50
61
  encoding: UTF-8
51
- string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/138","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=138","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":0,"ContributionPercent":0,"ContributionValue":0,"Country":"","CostCenter":"","Credit":"false","CreditInvoiceReference":0,"Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
52
- name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"138","DueDate":"2019-09-01","EDIInformation":{"EDIGlobalLocationNumber":"","EDIGlobalLocationNumberDelivery":"","EDIInvoiceExtra1":"","EDIInvoiceExtra2":"","EDIOurElectronicReference":"","EDIYourElectronicReference":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
53
- {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2019-09-01","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":0,"InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"13854","OfferReference":0,"OrderReference":0,"OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2019-09-01","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":0,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null}}'
54
- http_version:
55
- recorded_at: Sun, 01 Sep 2019 07:02:17 GMT
56
- recorded_with: VCR 4.0.0
62
+ string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/196","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=196","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":"0","ContributionPercent":0,"ContributionValue":0,"Country":"","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
63
+ name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"196","DueDate":"2024-01-22","EDIInformation":{"EDIGlobalLocationNumber":null,"EDIGlobalLocationNumberDelivery":null,"EDIInvoiceExtra1":null,"EDIInvoiceExtra2":null,"EDIOurElectronicReference":null,"EDIYourElectronicReference":null,"EDIStatus":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
64
+ {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2024-01-22","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"19653","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2024-01-22","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","TimeBasisReference":null,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null,"TaxReductionType":"none"}}'
65
+ recorded_at: Mon, 22 Jan 2024 14:54:33 GMT
66
+ recorded_with: VCR 6.2.0
@@ -15,42 +15,52 @@ http_interactions:
15
15
  - 9aBA8ZgsvR
16
16
  Access-Token:
17
17
  - ccaef817-d5d8-4b1c-a316-54f3e55c5c54
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ User-Agent:
21
+ - Ruby
18
22
  response:
19
23
  status:
20
24
  code: 201
21
25
  message: Created
22
26
  headers:
23
- Server:
24
- - nginx
25
- Date:
26
- - Sun, 01 Sep 2019 07:02:16 GMT
27
27
  Content-Type:
28
28
  - application/json
29
- Connection:
30
- - close
29
+ Date:
30
+ - Mon, 22 Jan 2024 14:54:33 GMT
31
31
  Location:
32
32
  - invoices
33
+ X-Build:
34
+ - 9dd4e26746
35
+ X-Frame-Options:
36
+ - sameorigin
33
37
  X-Rack-Responsetime:
34
- - '292'
38
+ - '111'
35
39
  X-Uid:
36
- - 1a2cf2df
37
- X-Build:
38
- - b1e7c74853
39
- Strict-Transport-Security:
40
- - max-age=31536000; includeSubdomains
41
- X-Xss-Protection:
42
- - 1; mode=block
40
+ - 788bfd2d
41
+ Transfer-Encoding:
42
+ - chunked
43
+ Server:
44
+ - Fortnox
43
45
  X-Content-Type-Options:
44
46
  - nosniff
45
- X-Frame-Options:
46
- - sameorigin
47
+ X-Xss-Protection:
48
+ - '0'
47
49
  Referrer-Policy:
48
50
  - strict-origin-when-cross-origin
51
+ Content-Security-Policy:
52
+ - 'upgrade-insecure-requests;frame-ancestors https://*.fortnox.se;report-uri
53
+ /api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
54
+ *.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
55
+ s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
56
+ fonts.gstatic.com fortnox.piwik.pro api.cling.se wss://api.cling.se ''unsafe-inline''
57
+ ''unsafe-eval'' blob: data:'
58
+ Strict-Transport-Security:
59
+ - max-age=31536000; includeSubdomains
49
60
  body:
50
61
  encoding: UTF-8
51
- string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/137","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=137","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":0,"ContributionPercent":0,"ContributionValue":0,"Country":"","CostCenter":"","Credit":"false","CreditInvoiceReference":0,"Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
52
- name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"137","DueDate":"2019-09-01","EDIInformation":{"EDIGlobalLocationNumber":"","EDIGlobalLocationNumberDelivery":"","EDIInvoiceExtra1":"","EDIInvoiceExtra2":"","EDIOurElectronicReference":"","EDIYourElectronicReference":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
53
- {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2019-09-01","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":0,"InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"13755","OfferReference":0,"OrderReference":0,"OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2019-09-01","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":0,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null}}'
54
- http_version:
55
- recorded_at: Sun, 01 Sep 2019 07:02:17 GMT
56
- recorded_with: VCR 4.0.0
62
+ string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/195","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=195","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"","ContractReference":"0","ContributionPercent":0,"ContributionValue":0,"Country":"","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
63
+ name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"195","DueDate":"2024-01-22","EDIInformation":{"EDIGlobalLocationNumber":null,"EDIGlobalLocationNumberDelivery":null,"EDIInvoiceExtra1":null,"EDIInvoiceExtra2":null,"EDIOurElectronicReference":null,"EDIYourElectronicReference":null,"EDIStatus":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
64
+ {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2024-01-22","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"19554","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2024-01-22","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","TimeBasisReference":null,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null,"TaxReductionType":"none"}}'
65
+ recorded_at: Mon, 22 Jan 2024 14:54:33 GMT
66
+ recorded_with: VCR 6.2.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: put
5
- uri: https://api.fortnox.se/3/invoices/95
5
+ uri: https://api.fortnox.se/3/invoices/190
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"Invoice":{"Comments":"Updated comments"}}'
@@ -15,34 +15,53 @@ http_interactions:
15
15
  - 9aBA8ZgsvR
16
16
  Access-Token:
17
17
  - ccaef817-d5d8-4b1c-a316-54f3e55c5c54
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ User-Agent:
21
+ - Ruby
18
22
  response:
19
23
  status:
20
24
  code: 200
21
25
  message: OK
22
26
  headers:
23
- Server:
24
- - nginx
25
- Date:
26
- - Wed, 29 May 2019 07:52:49 GMT
27
+ Content-Length:
28
+ - '2198'
27
29
  Content-Type:
28
30
  - application/json
29
- Connection:
30
- - close
31
+ Date:
32
+ - Mon, 22 Jan 2024 14:52:52 GMT
31
33
  Vary:
32
34
  - Accept-Encoding
33
- - Accept-Encoding
35
+ X-Build:
36
+ - 9dd4e26746
37
+ X-Frame-Options:
38
+ - sameorigin
34
39
  X-Rack-Responsetime:
35
- - '92'
40
+ - '128'
36
41
  X-Uid:
37
- - a031213c
38
- X-Build:
39
- - e930a91c78
42
+ - d65c6287
43
+ Server:
44
+ - Fortnox
45
+ X-Content-Type-Options:
46
+ - nosniff
47
+ X-Xss-Protection:
48
+ - '0'
49
+ Referrer-Policy:
50
+ - strict-origin-when-cross-origin
51
+ Content-Security-Policy:
52
+ - 'upgrade-insecure-requests;frame-ancestors https://*.fortnox.se;report-uri
53
+ /api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
54
+ *.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
55
+ s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
56
+ fonts.gstatic.com fortnox.piwik.pro api.cling.se wss://api.cling.se ''unsafe-inline''
57
+ ''unsafe-eval'' blob: data:'
58
+ Strict-Transport-Security:
59
+ - max-age=31536000; includeSubdomains
40
60
  body:
41
- encoding: UTF-8
42
- string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/95","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=95","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"Updated
43
- comments","ContractReference":0,"ContributionPercent":0,"ContributionValue":0,"Country":"","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
44
- name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"95","DueDate":"2019-05-29","EDIInformation":{"EDIGlobalLocationNumber":"","EDIGlobalLocationNumberDelivery":"","EDIInvoiceExtra1":"","EDIInvoiceExtra2":"","EDIOurElectronicReference":"","EDIYourElectronicReference":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
45
- {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2019-05-29","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"9548","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2019-05-29","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null}}'
46
- http_version:
47
- recorded_at: Wed, 29 May 2019 07:52:49 GMT
48
- recorded_with: VCR 4.0.0
61
+ encoding: ASCII-8BIT
62
+ string: '{"Invoice":{"@url":"https:\/\/api.fortnox.se\/3\/invoices\/190","@urlTaxReductionList":"https:\/\/api.fortnox.se\/3\/taxreductions?filter=invoices&referencenumber=190","AdministrationFee":0,"AdministrationFeeVAT":0,"Address1":"","Address2":"","Balance":0,"BasisTaxReduction":0,"Booked":false,"Cancelled":false,"City":"","Comments":"Updated
63
+ comments","ContractReference":"0","ContributionPercent":0,"ContributionValue":0,"Country":"","CostCenter":"","Credit":"false","CreditInvoiceReference":"0","Currency":"SEK","CurrencyRate":1,"CurrencyUnit":1,"CustomerName":"Old
64
+ name","CustomerNumber":"1","DeliveryAddress1":"","DeliveryAddress2":"","DeliveryCity":"","DeliveryCountry":"","DeliveryDate":null,"DeliveryName":"","DeliveryZipCode":"","DocumentNumber":"190","DueDate":"2024-01-22","EDIInformation":{"EDIGlobalLocationNumber":null,"EDIGlobalLocationNumberDelivery":null,"EDIInvoiceExtra1":null,"EDIInvoiceExtra2":null,"EDIOurElectronicReference":null,"EDIYourElectronicReference":null,"EDIStatus":""},"EmailInformation":{"EmailAddressFrom":null,"EmailAddressTo":"","EmailAddressCC":null,"EmailAddressBCC":null,"EmailSubject":"Faktura
65
+ {no} bifogas","EmailBody":" "},"EUQuarterlyReport":false,"ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","Freight":0,"FreightVAT":0,"Gross":0,"HouseWork":false,"InvoiceDate":"2024-01-22","InvoicePeriodStart":"","InvoicePeriodEnd":"","InvoiceReference":"0","InvoiceRows":[],"InvoiceType":"INVOICE","Labels":[],"Language":"SV","LastRemindDate":null,"Net":0,"NotCompleted":false,"NoxFinans":false,"OCR":"19059","OfferReference":"0","OrderReference":"0","OrganisationNumber":"860101-8735","OurReference":"","PaymentWay":"","Phone1":"","Phone2":"","PriceList":"A","PrintTemplate":"st","Project":"","WarehouseReady":true,"OutboundDate":"2024-01-22","Remarks":"","Reminders":0,"RoundOff":0,"Sent":false,"TaxReduction":null,"TermsOfDelivery":"","TermsOfPayment":"0","TimeBasisReference":null,"Total":0,"TotalToPay":0,"TotalVAT":0,"VATIncluded":false,"VoucherNumber":null,"VoucherSeries":null,"VoucherYear":null,"WayOfDelivery":"","YourOrderNumber":"","YourReference":"","ZipCode":"","AccountingMethod":"ACCRUAL","FinalPayDate":null,"TaxReductionType":"none"}}'
66
+ recorded_at: Mon, 22 Jan 2024 14:52:52 GMT
67
+ recorded_with: VCR 6.2.0