File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ endpoints:
16
16
Returns your account settings.
17
17
examples :
18
18
curl : |
19
- curl -h "Authorization: Bearer $TOKEN" \
19
+ curl -H "Authorization: Bearer $TOKEN" \
20
20
https://$api_root/$version/account
21
21
PUT :
22
22
description : >
23
23
Edits your account settings.
24
24
examples :
25
25
curl : |
26
- curl -h "content-type : application/json" \
27
- -h "authorization: bearer $token " \
26
+ curl -H "Content-Type : application/json" \
27
+ -H "Authorization: Bearer $TOKEN " \
28
28
-X PUT -d '{
29
29
"address_1": "123 Main St.",
30
30
"address_2": "Suite 101",
@@ -52,15 +52,15 @@ endpoints:
52
52
Returns your current defaults.
53
53
examples :
54
54
curl : |
55
- curl -h "Authorization: Bearer $TOKEN" \
55
+ curl -H "Authorization: Bearer $TOKEN" \
56
56
https://$api_root/$version/account/settings
57
57
PUT :
58
58
description : >
59
59
Edits your account's defaults.
60
60
examples :
61
61
curl : |
62
- curl -h "Content-Type: application/json" \
63
- -h "Authorization: Bearer $TOKEn " \
62
+ curl -H "Content-Type: application/json" \
63
+ -H "Authorization: Bearer $TOKEN " \
64
64
-X PUT -d '{
65
65
"network_helper": true,
66
66
"longview_subscription": "longview-10"
Original file line number Diff line number Diff line change @@ -25,15 +25,17 @@ schema:
25
25
value : Suite 101
26
26
city :
27
27
type : String
28
- description : City portion of this account's billing address.
28
+ description : The city for this account's billing address.
29
29
value : Philadelphia
30
30
state :
31
31
type : String
32
- description : State (or province) portion of this account's billing address.
32
+ description : >
33
+ State portion of this account's billing address, or province if you
34
+ are outside of the United States.
33
35
value : PA
34
36
zip :
35
37
type : String
36
- description : Zip Code portion of this account's billing address.
38
+ description : The zip code for this account's billing address.
37
39
value : 19102
38
40
country :
39
41
type : String
You can’t perform that action at this time.
0 commit comments