Skip to content

Commit e26a571

Browse files
committed
Addressed PR feedback
1 parent 0528c45 commit e26a571

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

src/data/endpoints/account.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ endpoints:
1616
Returns your account settings.
1717
examples:
1818
curl: |
19-
curl -h "Authorization: Bearer $TOKEN" \
19+
curl -H "Authorization: Bearer $TOKEN" \
2020
https://$api_root/$version/account
2121
PUT:
2222
description: >
2323
Edits your account settings.
2424
examples:
2525
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" \
2828
-X PUT -d '{
2929
"address_1": "123 Main St.",
3030
"address_2": "Suite 101",
@@ -52,15 +52,15 @@ endpoints:
5252
Returns your current defaults.
5353
examples:
5454
curl: |
55-
curl -h "Authorization: Bearer $TOKEN" \
55+
curl -H "Authorization: Bearer $TOKEN" \
5656
https://$api_root/$version/account/settings
5757
PUT:
5858
description: >
5959
Edits your account's defaults.
6060
examples:
6161
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" \
6464
-X PUT -d '{
6565
"network_helper": true,
6666
"longview_subscription": "longview-10"

src/data/objects/account.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ schema:
2525
value: Suite 101
2626
city:
2727
type: String
28-
description: City portion of this account's billing address.
28+
description: The city for this account's billing address.
2929
value: Philadelphia
3030
state:
3131
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.
3335
value: PA
3436
zip:
3537
type: String
36-
description: Zip Code portion of this account's billing address.
38+
description: The zip code for this account's billing address.
3739
value: 19102
3840
country:
3941
type: String

0 commit comments

Comments
 (0)