fortnox-api 0.8.2 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.env.template +7 -0
- data/.env.test +11 -3
- data/.gitignore +7 -1
- data/.rubocop.yml +17 -1
- data/.travis.yml +10 -9
- data/CHANGELOG.md +27 -6
- data/CONTRIBUTE.md +21 -9
- data/DEVELOPER_README.md +69 -0
- data/Guardfile +13 -4
- data/README.md +226 -64
- data/Rakefile +128 -0
- data/bin/get_tokens +79 -0
- data/bin/renew_tokens +28 -0
- data/fortnox-api.gemspec +10 -9
- data/lib/fortnox/api/mappers/base/from_json.rb +4 -3
- data/lib/fortnox/api/mappers/base/to_json.rb +2 -3
- data/lib/fortnox/api/models/article.rb +1 -1
- data/lib/fortnox/api/models/base.rb +12 -10
- data/lib/fortnox/api/models/customer.rb +55 -55
- data/lib/fortnox/api/models/label.rb +2 -2
- data/lib/fortnox/api/repositories/authentication.rb +61 -0
- data/lib/fortnox/api/repositories/base/savers.rb +3 -1
- data/lib/fortnox/api/repositories/base.rb +21 -35
- data/lib/fortnox/api/repositories.rb +1 -0
- data/lib/fortnox/api/request_handling.rb +30 -18
- data/lib/fortnox/api/types/document_row.rb +3 -3
- data/lib/fortnox/api/types/enums.rb +27 -11
- data/lib/fortnox/api/types/model.rb +1 -3
- data/lib/fortnox/api/types/sized.rb +2 -2
- data/lib/fortnox/api/types.rb +14 -1
- data/lib/fortnox/api/version.rb +1 -1
- data/lib/fortnox/api.rb +12 -32
- data/spec/fortnox/api/mappers/base/canonical_name_sym_spec.rb +4 -4
- data/spec/fortnox/api/mappers/base/from_json_spec.rb +10 -12
- data/spec/fortnox/api/mappers/base/to_json_spec.rb +48 -57
- data/spec/fortnox/api/mappers/base_spec.rb +4 -7
- data/spec/fortnox/api/mappers/contexts/json_conversion.rb +38 -33
- data/spec/fortnox/api/mappers/unit_spec.rb +3 -4
- data/spec/fortnox/api/models/base_spec.rb +27 -16
- data/spec/fortnox/api/models/unit_spec.rb +5 -3
- data/spec/fortnox/api/repositories/article_spec.rb +46 -9
- data/spec/fortnox/api/repositories/authentication_spec.rb +103 -0
- data/spec/fortnox/api/repositories/base_spec.rb +106 -319
- data/spec/fortnox/api/repositories/customer_spec.rb +37 -7
- data/spec/fortnox/api/repositories/examples/all.rb +0 -1
- data/spec/fortnox/api/repositories/examples/find.rb +5 -8
- data/spec/fortnox/api/repositories/examples/only.rb +4 -13
- data/spec/fortnox/api/repositories/examples/save.rb +32 -18
- data/spec/fortnox/api/repositories/examples/save_with_nested_model.rb +0 -5
- data/spec/fortnox/api/repositories/examples/save_with_specially_named_attribute.rb +1 -4
- data/spec/fortnox/api/repositories/examples/search.rb +4 -7
- data/spec/fortnox/api/repositories/invoice_spec.rb +117 -15
- data/spec/fortnox/api/repositories/order_spec.rb +11 -9
- data/spec/fortnox/api/repositories/project_spec.rb +7 -6
- data/spec/fortnox/api/repositories/terms_of_payment_spec.rb +9 -7
- data/spec/fortnox/api/repositories/unit_spec.rb +13 -11
- data/spec/fortnox/api/types/country_spec.rb +1 -1
- data/spec/fortnox/api/types/email_spec.rb +2 -2
- data/spec/fortnox/api/types/examples/document_row.rb +3 -3
- data/spec/fortnox/api/types/examples/enum.rb +4 -4
- data/spec/fortnox/api/types/examples/types.rb +1 -3
- data/spec/fortnox/api/types/housework_types_spec.rb +54 -61
- data/spec/fortnox/api/types/model_spec.rb +3 -7
- data/spec/fortnox/api/types/order_row_spec.rb +2 -2
- data/spec/fortnox/api/types/required_spec.rb +6 -11
- data/spec/fortnox/api/types/sales_account_spec.rb +57 -0
- data/spec/fortnox/api_spec.rb +19 -124
- data/spec/spec_helper.rb +0 -14
- data/spec/support/helpers/configuration_helper.rb +30 -3
- data/spec/support/helpers.rb +1 -1
- data/spec/support/matchers/type/attribute_matcher.rb +2 -2
- data/spec/support/matchers/type/have_nullable_date_matcher.rb +6 -4
- data/spec/support/matchers/type/have_nullable_matcher.rb +1 -1
- data/spec/support/matchers/type/have_nullable_string_matcher.rb +5 -5
- data/spec/support/matchers/type/require_attribute_matcher.rb +5 -5
- data/spec/support/matchers/type/type_matcher.rb +1 -1
- data/spec/support/vcr_setup.rb +16 -0
- data/spec/vcr_cassettes/articles/all.yml +16 -43
- data/spec/vcr_cassettes/articles/find_by_hash_failure.yml +10 -12
- data/spec/vcr_cassettes/articles/find_failure.yml +10 -12
- data/spec/vcr_cassettes/articles/find_id_1.yml +13 -14
- data/spec/vcr_cassettes/articles/find_new.yml +14 -16
- data/spec/vcr_cassettes/articles/limits/quantity_in_stock_min_value.yml +63 -0
- data/spec/vcr_cassettes/articles/limits/quantity_in_stock_rounding_positive_value.yml +63 -0
- data/spec/vcr_cassettes/articles/multi_param_find_by_hash.yml +13 -15
- data/spec/vcr_cassettes/articles/save_new.yml +13 -15
- data/spec/vcr_cassettes/articles/save_old.yml +14 -16
- data/spec/vcr_cassettes/articles/save_with_specially_named_attribute.yml +13 -15
- data/spec/vcr_cassettes/articles/search_by_name.yml +16 -15
- data/spec/vcr_cassettes/articles/search_miss.yml +10 -12
- data/spec/vcr_cassettes/articles/search_with_special_char.yml +10 -12
- data/spec/vcr_cassettes/articles/single_param_find_by_hash.yml +13 -27
- data/spec/vcr_cassettes/authentication/expired_token.yml +54 -0
- data/spec/vcr_cassettes/authentication/invalid_authorization.yml +57 -0
- data/spec/vcr_cassettes/authentication/invalid_refresh_token.yml +58 -0
- data/spec/vcr_cassettes/authentication/valid_request.yml +63 -0
- data/spec/vcr_cassettes/customers/all.yml +20 -127
- data/spec/vcr_cassettes/customers/find_by_hash_failure.yml +10 -12
- data/spec/vcr_cassettes/customers/find_failure.yml +10 -12
- data/spec/vcr_cassettes/customers/find_id_1.yml +14 -15
- data/spec/vcr_cassettes/customers/find_new.yml +13 -15
- data/spec/vcr_cassettes/customers/find_with_sales_account.yml +63 -0
- data/spec/vcr_cassettes/customers/multi_param_find_by_hash.yml +13 -15
- data/spec/vcr_cassettes/customers/save_new.yml +12 -14
- data/spec/vcr_cassettes/customers/save_new_with_country_code_SE.yml +12 -14
- data/spec/vcr_cassettes/customers/save_new_with_sales_account.yml +63 -0
- data/spec/vcr_cassettes/customers/save_old.yml +13 -15
- data/spec/vcr_cassettes/customers/save_with_specially_named_attribute.yml +12 -14
- data/spec/vcr_cassettes/customers/search_by_name.yml +13 -45
- data/spec/vcr_cassettes/customers/search_miss.yml +10 -12
- data/spec/vcr_cassettes/customers/search_with_special_char.yml +10 -12
- data/spec/vcr_cassettes/customers/single_param_find_by_hash.yml +14 -16
- data/spec/vcr_cassettes/invoices/all.yml +47 -112
- data/spec/vcr_cassettes/invoices/filter_hit.yml +14 -18
- data/spec/vcr_cassettes/invoices/filter_invalid.yml +10 -12
- data/spec/vcr_cassettes/invoices/find_by_hash_failure.yml +10 -12
- data/spec/vcr_cassettes/invoices/find_failure.yml +10 -12
- data/spec/vcr_cassettes/invoices/find_id_1.yml +15 -16
- data/spec/vcr_cassettes/invoices/find_new.yml +16 -18
- data/spec/vcr_cassettes/invoices/multi_param_find_by_hash.yml +13 -15
- data/spec/vcr_cassettes/invoices/row_delivered_quantity_decimals.yml +65 -0
- data/spec/vcr_cassettes/invoices/row_delivered_quantity_decimals_round_up.yml +65 -0
- data/spec/vcr_cassettes/invoices/row_description_limit.yml +65 -0
- data/spec/vcr_cassettes/invoices/row_price_limit.yml +65 -0
- data/spec/vcr_cassettes/invoices/row_price_limit_round_up.yml +65 -0
- data/spec/vcr_cassettes/invoices/save_new.yml +14 -16
- data/spec/vcr_cassettes/invoices/save_new_with_comments.yml +14 -16
- data/spec/vcr_cassettes/invoices/save_new_with_country.yml +14 -15
- data/spec/vcr_cassettes/invoices/save_new_with_country_GB.yml +15 -16
- data/spec/vcr_cassettes/invoices/save_new_with_country_Norge.yml +14 -15
- data/spec/vcr_cassettes/invoices/save_new_with_country_Norway.yml +14 -15
- data/spec/vcr_cassettes/invoices/save_new_with_country_Sverige.yml +14 -15
- data/spec/vcr_cassettes/invoices/save_new_with_country_VA.yml +15 -16
- data/spec/vcr_cassettes/invoices/save_new_with_country_VI.yml +15 -16
- data/spec/vcr_cassettes/invoices/save_new_with_country_empty_string.yml +14 -15
- data/spec/vcr_cassettes/invoices/save_new_with_country_nil.yml +14 -15
- data/spec/vcr_cassettes/invoices/save_new_with_unsaved_parent.yml +65 -0
- data/spec/vcr_cassettes/invoices/save_old.yml +16 -18
- data/spec/vcr_cassettes/invoices/save_old_with_empty_comments.yml +16 -18
- data/spec/vcr_cassettes/invoices/save_old_with_empty_country.yml +16 -17
- data/spec/vcr_cassettes/invoices/save_old_with_nil_comments.yml +16 -18
- data/spec/vcr_cassettes/invoices/save_old_with_nil_country.yml +16 -17
- data/spec/vcr_cassettes/invoices/save_with_nested_model.yml +15 -16
- data/spec/vcr_cassettes/invoices/save_with_specially_named_attribute.yml +14 -15
- data/spec/vcr_cassettes/invoices/search_by_name.yml +13 -21
- data/spec/vcr_cassettes/invoices/search_miss.yml +10 -12
- data/spec/vcr_cassettes/invoices/search_with_special_char.yml +10 -12
- data/spec/vcr_cassettes/invoices/single_param_find_by_hash.yml +14 -16
- data/spec/vcr_cassettes/orders/all.yml +19 -113
- data/spec/vcr_cassettes/orders/filter_hit.yml +14 -20
- data/spec/vcr_cassettes/orders/filter_invalid.yml +10 -12
- data/spec/vcr_cassettes/orders/find_by_hash_failure.yml +10 -12
- data/spec/vcr_cassettes/orders/find_failure.yml +10 -12
- data/spec/vcr_cassettes/orders/find_id_1.yml +17 -17
- data/spec/vcr_cassettes/orders/find_new.yml +16 -18
- data/spec/vcr_cassettes/orders/housework_invalid_tax_reduction_type.yml +11 -13
- data/spec/vcr_cassettes/orders/housework_othercoses_invalid.yml +11 -13
- data/spec/vcr_cassettes/orders/housework_type_babysitting.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_cleaning.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_construction.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_cooking.yml +11 -13
- data/spec/vcr_cassettes/orders/housework_type_electricity.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_gardening.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_glassmetalwork.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_grounddrainagework.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_hvac.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_itservices.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_majorappliancerepair.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_masonry.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_movingservices.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_othercare.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_othercosts.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_paintingwallpapering.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_snowplowing.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_textileclothing.yml +15 -16
- data/spec/vcr_cassettes/orders/housework_type_tutoring.yml +11 -13
- data/spec/vcr_cassettes/orders/multi_param_find_by_hash.yml +13 -15
- data/spec/vcr_cassettes/orders/save_new.yml +16 -18
- data/spec/vcr_cassettes/orders/save_old.yml +16 -18
- data/spec/vcr_cassettes/orders/save_with_nested_model.yml +15 -16
- data/spec/vcr_cassettes/orders/search_by_name.yml +13 -17
- data/spec/vcr_cassettes/orders/search_miss.yml +10 -12
- data/spec/vcr_cassettes/orders/search_with_special_char.yml +10 -12
- data/spec/vcr_cassettes/orders/single_param_find_by_hash.yml +14 -16
- data/spec/vcr_cassettes/projects/all.yml +14 -37
- data/spec/vcr_cassettes/projects/find_by_hash_failure.yml +10 -12
- data/spec/vcr_cassettes/projects/find_failure.yml +10 -12
- data/spec/vcr_cassettes/projects/find_id_1.yml +13 -15
- data/spec/vcr_cassettes/projects/find_new.yml +14 -16
- data/spec/vcr_cassettes/projects/multi_param_find_by_hash.yml +15 -16
- data/spec/vcr_cassettes/projects/save_new.yml +13 -15
- data/spec/vcr_cassettes/projects/save_old.yml +14 -16
- data/spec/vcr_cassettes/projects/single_param_find_by_hash.yml +12 -14
- data/spec/vcr_cassettes/termsofpayments/all.yml +16 -23
- data/spec/vcr_cassettes/termsofpayments/find_failure.yml +10 -12
- data/spec/vcr_cassettes/termsofpayments/find_id_1.yml +13 -16
- data/spec/vcr_cassettes/termsofpayments/find_new.yml +12 -14
- data/spec/vcr_cassettes/termsofpayments/save_new.yml +12 -14
- data/spec/vcr_cassettes/termsofpayments/save_old.yml +12 -14
- data/spec/vcr_cassettes/units/all.yml +13 -24
- data/spec/vcr_cassettes/units/find_failure.yml +10 -12
- data/spec/vcr_cassettes/units/find_id_1.yml +13 -15
- data/spec/vcr_cassettes/units/find_new.yml +12 -14
- data/spec/vcr_cassettes/units/save_new.yml +12 -14
- data/spec/vcr_cassettes/units/save_old.yml +12 -14
- data/spec/vcr_cassettes/units/save_with_specially_named_attribute.yml +12 -14
- metadata +45 -230
- data/lib/fortnox/api/circular_queue.rb +0 -39
- data/spec/fortnox/api/circular_queue_spec.rb +0 -52
- data/spec/support/helpers/when_performing_helper.rb +0 -7
- data/temp.txt +0 -1
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -25,21 +23,21 @@ http_interactions:
|
|
25
23
|
message: OK
|
26
24
|
headers:
|
27
25
|
Content-Length:
|
28
|
-
- '
|
26
|
+
- '723'
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:33:54 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '104'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- 78da8c94
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,14 +51,14 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
|
-
string: '{"MetaInformation":{"@TotalResources":2,"@TotalPages":1,"@CurrentPage":1},"Orders":[{"@url":"https:\/\/api.fortnox.se\/3\/orders\/
|
63
|
-
name","CustomerNumber":"1","DeliveryDate":null,"DocumentNumber":"
|
64
|
-
|
65
|
-
recorded_at: Mon,
|
66
|
-
recorded_with: VCR 6.
|
60
|
+
string: '{"MetaInformation":{"@TotalResources":2,"@TotalPages":1,"@CurrentPage":1},"Orders":[{"@url":"https:\/\/api.fortnox.se\/3\/orders\/1","Cancelled":false,"Currency":"SEK","CustomerName":"Updated
|
61
|
+
name","CustomerNumber":"1","DeliveryDate":null,"DocumentNumber":"1","ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","OrderDate":"2023-01-27","OrderType":"Order","Project":"","Sent":false,"Total":0},{"@url":"https:\/\/api.fortnox.se\/3\/orders\/2","Cancelled":false,"Currency":"SEK","CustomerName":"A
|
62
|
+
customer","CustomerNumber":"5","DeliveryDate":null,"DocumentNumber":"2","ExternalInvoiceReference1":"","ExternalInvoiceReference2":"","OrderDate":"2023-01-27","OrderType":"Order","Project":"","Sent":false,"Total":0}]}'
|
63
|
+
recorded_at: Mon, 30 Jan 2023 10:33:54 GMT
|
64
|
+
recorded_with: VCR 6.1.0
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -25,21 +23,21 @@ http_interactions:
|
|
25
23
|
message: OK
|
26
24
|
headers:
|
27
25
|
Content-Length:
|
28
|
-
- '
|
26
|
+
- '453'
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:29 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '69'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- d74c18a7
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,35 +51,14 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
|
-
string: '{"MetaInformation":{"@TotalResources":
|
63
|
-
project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"1","Status":"ONGOING","StartDate":
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
Andersson","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5568","Status":"ONGOING","StartDate":"2016-12-28"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5569","Description":"Nji
|
68
|
-
Nij","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5569","Status":"ONGOING","StartDate":"2017-05-18"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5570","Description":"Some
|
69
|
-
important project1","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5570","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5571","Description":"19890102-3286","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5571","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5572","Description":"19890102-3286","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5572","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5573","Description":"19921212-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5573","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5574","Description":"19921212-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5574","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5575","Description":"19801010-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5575","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5576","Description":"19801010-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5576","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5577","Description":"19720316-5985","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5577","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5578","Description":"19900101-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5578","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5579","Description":"19901010-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5579","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5580","Description":"19800101-0101","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5580","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5581","Description":"19800101-0101","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5581","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5582","Description":"19801010-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5582","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5583","Description":"Gabriel
|
70
|
-
Nygren, 19171213-4568","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5583","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5584","Description":"A
|
71
|
-
description","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5584","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5585","Description":"A","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5585","Status":"ONGOING","StartDate":"2017-01-01"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5586","Description":"A
|
72
|
-
B, 19800101-0101","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5586","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5587","Description":"h
|
73
|
-
h, 19800101-0101","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5587","Status":"ONGOING","StartDate":"2018-03-29"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5588","Description":"Test
|
74
|
-
Testsson, 19900101-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5588","Status":"ONGOING","StartDate":"2018-03-29"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5589","Description":"Hannes
|
75
|
-
Elvemyr, 19771110-0805","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5589","Status":"ONGOING","StartDate":"2018-06-21"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5590","Description":"Accodeing
|
76
|
-
to you, 19790827-3399","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5590","Status":"ONGOING","StartDate":"2019-02-20"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5591","Description":"Some
|
77
|
-
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5591","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5592","Description":"Some
|
78
|
-
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5592","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5593","Description":"Some
|
79
|
-
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5593","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5594","Description":"aaaaaaaaaa
|
80
|
-
aaaaaaaaaa, 20100202-1234","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5594","Status":"ONGOING","StartDate":"2020-10-29"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5595","Description":"Some
|
81
|
-
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5595","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5596","Description":"H
|
82
|
-
A, 19800101-5871","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5596","Status":"ONGOING","StartDate":"2020-12-22"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5597","Description":"First
|
83
|
-
name 34 Last name 34, 19890102-3286","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5597","Status":"ONGOING","StartDate":"2020-12-22"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5598","Description":"H
|
84
|
-
E, 19800101-1013","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5598","Status":"ONGOING","StartDate":"2020-12-23"},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/5599","Description":"Some
|
85
|
-
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"5599","Status":"ONGOING","StartDate":null}]}'
|
86
|
-
recorded_at: Mon, 22 Jan 2024 14:52:58 GMT
|
87
|
-
recorded_with: VCR 6.2.0
|
60
|
+
string: '{"MetaInformation":{"@TotalResources":2,"@TotalPages":1,"@CurrentPage":1},"Projects":[{"@url":"https:\/\/api.fortnox.se\/3\/projects\/1","Description":"Some
|
61
|
+
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"1","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/2","Description":"Some
|
62
|
+
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"2","Status":"ONGOING","StartDate":null}]}'
|
63
|
+
recorded_at: Mon, 30 Jan 2023 10:37:29 GMT
|
64
|
+
recorded_with: VCR 6.1.0
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -29,17 +27,17 @@ http_interactions:
|
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:29 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '61'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- eb5fbf8c
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,12 +51,12 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
60
|
string: '{"MetaInformation":{"@TotalResources":0,"@TotalPages":0,"@CurrentPage":1},"Projects":[]}'
|
63
|
-
recorded_at: Mon,
|
64
|
-
recorded_with: VCR 6.
|
61
|
+
recorded_at: Mon, 30 Jan 2023 10:37:29 GMT
|
62
|
+
recorded_with: VCR 6.1.0
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -29,17 +27,17 @@ http_interactions:
|
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:29 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '84'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- 0b918152
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,12 +51,12 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
60
|
string: '{"ErrorInformation":{"Error":1,"Message":"Kan inte hitta projektet.","Code":2001161}}'
|
63
|
-
recorded_at: Mon,
|
64
|
-
recorded_with: VCR 6.
|
61
|
+
recorded_at: Mon, 30 Jan 2023 10:37:29 GMT
|
62
|
+
recorded_with: VCR 6.1.0
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -25,21 +23,21 @@ http_interactions:
|
|
25
23
|
message: OK
|
26
24
|
headers:
|
27
25
|
Content-Length:
|
28
|
-
- '
|
26
|
+
- '245'
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:29 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '65'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- 3a914a06
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,13 +51,13 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
|
-
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/1","Comments":
|
63
|
-
project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"1","Status":"ONGOING","StartDate":
|
64
|
-
recorded_at: Mon,
|
65
|
-
recorded_with: VCR 6.
|
60
|
+
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/1","Comments":"Updated
|
61
|
+
comments","ContactPerson":null,"Description":"Some important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"1","Status":"ONGOING","StartDate":null}}'
|
62
|
+
recorded_at: Mon, 30 Jan 2023 10:37:29 GMT
|
63
|
+
recorded_with: VCR 6.1.0
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://api.fortnox.se/3/projects/
|
5
|
+
uri: https://api.fortnox.se/3/projects/2
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -25,21 +23,21 @@ http_interactions:
|
|
25
23
|
message: OK
|
26
24
|
headers:
|
27
25
|
Content-Length:
|
28
|
-
- '
|
26
|
+
- '236'
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:28 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '72'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- 62901d53
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,13 +51,13 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
|
-
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/
|
63
|
-
value","ContactPerson":null,"Description":"Some important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"
|
64
|
-
recorded_at: Mon,
|
65
|
-
recorded_with: VCR 6.
|
60
|
+
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/2","Comments":"A
|
61
|
+
value","ContactPerson":null,"Description":"Some important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"2","Status":"ONGOING","StartDate":null}}'
|
62
|
+
recorded_at: Mon, 30 Jan 2023 10:37:28 GMT
|
63
|
+
recorded_with: VCR 6.1.0
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://api.fortnox.se/3/projects/?limit=2&offset=
|
5
|
+
uri: https://api.fortnox.se/3/projects/?limit=2&offset=0
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -25,21 +23,21 @@ http_interactions:
|
|
25
23
|
message: OK
|
26
24
|
headers:
|
27
25
|
Content-Length:
|
28
|
-
- '
|
26
|
+
- '453'
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:29 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '80'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- db87e270
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,13 +51,14 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
|
-
string: '{"MetaInformation":{"@TotalResources":
|
63
|
-
|
64
|
-
|
65
|
-
|
60
|
+
string: '{"MetaInformation":{"@TotalResources":2,"@TotalPages":1,"@CurrentPage":1},"Projects":[{"@url":"https:\/\/api.fortnox.se\/3\/projects\/1","Description":"Some
|
61
|
+
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"1","Status":"ONGOING","StartDate":null},{"@url":"https:\/\/api.fortnox.se\/3\/projects\/2","Description":"Some
|
62
|
+
important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"2","Status":"ONGOING","StartDate":null}]}'
|
63
|
+
recorded_at: Mon, 30 Jan 2023 10:37:29 GMT
|
64
|
+
recorded_with: VCR 6.1.0
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -25,21 +23,21 @@ http_interactions:
|
|
25
23
|
message: Created
|
26
24
|
headers:
|
27
25
|
Content-Length:
|
28
|
-
- '
|
26
|
+
- '236'
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:28 GMT
|
33
31
|
Location:
|
34
32
|
- project
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '112'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- 4911cb9d
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,13 +51,13 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: UTF-8
|
62
|
-
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/
|
63
|
-
value","ContactPerson":null,"Description":"Some important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"
|
64
|
-
recorded_at: Mon,
|
65
|
-
recorded_with: VCR 6.
|
60
|
+
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/2","Comments":"A
|
61
|
+
value","ContactPerson":null,"Description":"Some important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"2","Status":"ONGOING","StartDate":null}}'
|
62
|
+
recorded_at: Mon, 30 Jan 2023 10:37:28 GMT
|
63
|
+
recorded_with: VCR 6.1.0
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: put
|
5
|
-
uri: https://api.fortnox.se/3/projects/
|
5
|
+
uri: https://api.fortnox.se/3/projects/2
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: '{"Project":{"Comments":"Updated comments"}}'
|
@@ -11,10 +11,8 @@ http_interactions:
|
|
11
11
|
- application/json
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
|
-
|
15
|
-
-
|
16
|
-
Access-Token:
|
17
|
-
- ccaef817-d5d8-4b1c-a316-54f3e55c5c54
|
14
|
+
Authorization:
|
15
|
+
- "<AUTHORIZATION>"
|
18
16
|
Accept-Encoding:
|
19
17
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
18
|
User-Agent:
|
@@ -25,21 +23,21 @@ http_interactions:
|
|
25
23
|
message: OK
|
26
24
|
headers:
|
27
25
|
Content-Length:
|
28
|
-
- '
|
26
|
+
- '245'
|
29
27
|
Content-Type:
|
30
28
|
- application/json
|
31
29
|
Date:
|
32
|
-
- Mon,
|
30
|
+
- Mon, 30 Jan 2023 10:37:28 GMT
|
33
31
|
Vary:
|
34
32
|
- Accept-Encoding
|
35
33
|
X-Build:
|
36
|
-
-
|
34
|
+
- 16d854443d
|
37
35
|
X-Frame-Options:
|
38
36
|
- sameorigin
|
39
37
|
X-Rack-Responsetime:
|
40
|
-
- '
|
38
|
+
- '104'
|
41
39
|
X-Uid:
|
42
|
-
-
|
40
|
+
- 4b0d8f5f
|
43
41
|
Server:
|
44
42
|
- Fortnox
|
45
43
|
X-Content-Type-Options:
|
@@ -53,13 +51,13 @@ http_interactions:
|
|
53
51
|
/api/cspreport;connect-src ''self'' https://a.storyblok.com wss://*.fortnox.se
|
54
52
|
*.fortnox.se *.findity.com mybusiness.pwc.se themes.googleusercontent.com
|
55
53
|
s3.amazonaws.com/helpjuice-static/ *.helpjuice.com *.vimeo.com fonts.googleapis.com
|
56
|
-
fonts.gstatic.com
|
57
|
-
|
54
|
+
fonts.gstatic.com api.cling.se wss://api.cling.se ''unsafe-inline'' ''unsafe-eval''
|
55
|
+
blob: data:'
|
58
56
|
Strict-Transport-Security:
|
59
57
|
- max-age=31536000; includeSubdomains
|
60
58
|
body:
|
61
59
|
encoding: ASCII-8BIT
|
62
|
-
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/
|
63
|
-
comments","ContactPerson":null,"Description":"Some important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"
|
64
|
-
recorded_at: Mon,
|
65
|
-
recorded_with: VCR 6.
|
60
|
+
string: '{"Project":{"@url":"https:\/\/api.fortnox.se\/3\/projects\/2","Comments":"Updated
|
61
|
+
comments","ContactPerson":null,"Description":"Some important project","EndDate":null,"ProjectLeader":null,"ProjectNumber":"2","Status":"ONGOING","StartDate":null}}'
|
62
|
+
recorded_at: Mon, 30 Jan 2023 10:37:28 GMT
|
63
|
+
recorded_with: VCR 6.1.0
|