You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use this command to opt out of SMS messages for the requesting User after a phone number has been verified with the **Phone Number Verify** ([POST /profile/phone-number/verify](/docs/api/profile/#phone-number-verify)) command.
17764
17768
operationId: deleteProfilePhoneNumber
17765
-
x-linode-cli-command: delete
17769
+
x-linode-cli-action: delete
17766
17770
security:
17767
17771
- personalAccessToken: []
17768
17772
- oauth:
@@ -17780,8 +17784,7 @@ paths:
17780
17784
x-code-samples:
17781
17785
- lang: Shell
17782
17786
source: >
17783
-
curl -H "Content-Type: application/json" \
17784
-
-H "Authorization: Bearer $TOKEN" \
17787
+
curl -H "Authorization: Bearer $TOKEN" \
17785
17788
-X DELETE \
17786
17789
https://api.linode.com/v4/profile/phone-number
17787
17790
- lang: CLI
@@ -17803,7 +17806,7 @@ paths:
17803
17806
17804
17807
Once a verification code is received, verify your phone number with the **Phone Number Verify** ([POST /profile/phone-number/verify](/docs/api/profile/#phone-number-verify)) command.
17805
17808
operationId: postProfilePhoneNumber
17806
-
x-linode-cli-command: sms-code-send
17809
+
x-linode-cli-action: sms-code-send
17807
17810
security:
17808
17811
- personalAccessToken: []
17809
17812
- oauth:
@@ -17868,7 +17871,7 @@ paths:
17868
17871
17869
17872
Once completed, the verified phone number is assigned to the User making the request. To change the verified phone number for a User, first use the **Phone Number Delete** ([DELETE /profile/phone-number](/docs/api/profile/#phone-number-delete)) command, then begin the verification process again with the **Phone Verification Code Send** ([POST /profile/phone-number](/docs/api/profile/#phone-number-verification-code-send)) command.
17870
17873
operationId: postProfilePhoneNumberVerify
17871
-
x-linode-cli-command: verify
17874
+
x-linode-cli-action: verify
17872
17875
security:
17873
17876
- personalAccessToken: []
17874
17877
- oauth:
@@ -17938,15 +17941,13 @@ paths:
17938
17941
schema:
17939
17942
type: object
17940
17943
description: A dictionary of user preferences.
17941
-
example: { "key1": "value1", "key2": "value2"}
17944
+
example: { "key1": "value1", "key2": "value2"}
17942
17945
default:
17943
17946
$ref: '#/components/responses/ErrorResponse'
17944
17947
x-code-samples:
17945
17948
- lang: Shell
17946
17949
source: >
17947
-
curl -H "Content-Type: application/json" \
17948
-
-H "Authorization: Bearer $TOKEN" \
17949
-
-X GET \
17950
+
curl -H "Authorization: Bearer $TOKEN" \
17950
17951
https://api.linode.com/v4/profile/preferences
17951
17952
put:
17952
17953
tags:
@@ -17976,7 +17977,9 @@ paths:
17976
17977
schema:
17977
17978
type: object
17978
17979
description: |
17979
-
Arbitrary JSON of your choosing.
17980
+
Arbitrary JSON of your choosing. Overwrites any existing preferences for this user.
17981
+
17982
+
Total length cannot exceed 65,535 characters.
17980
17983
responses:
17981
17984
'200':
17982
17985
description: Returns an object of user preferences.
@@ -17985,7 +17988,7 @@ paths:
17985
17988
schema:
17986
17989
type: object
17987
17990
description: An object of user preferences.
17988
-
example: { "key1": "value1", "key2": "value2"}
17991
+
example: { "key1": "value1", "key2": "value2"}
17989
17992
default:
17990
17993
$ref: '#/components/responses/ErrorResponse'
17991
17994
x-code-samples:
@@ -17995,10 +17998,9 @@ paths:
17995
17998
-H "Authorization: Bearer $TOKEN" \
17996
17999
-X PUT -d '{
17997
18000
"key1": "value1",
17998
-
"key1": "value2"
18001
+
"key2": "value2"
17999
18002
}' \
18000
18003
https://api.linode.com/v4/profile/preferences
18001
-
18002
18004
/regions:
18003
18005
x-linode-cli-command: regions
18004
18006
get:
@@ -18227,14 +18229,16 @@ paths:
18227
18229
x-linode-grant: read_write
18228
18230
tags:
18229
18231
- Support
18230
-
summary: Ticket Attachment Create
18231
-
description: >
18232
+
summary: Support Ticket Attachment Create
18233
+
description: |
18232
18234
Adds a file attachment to an existing Support
18233
18235
Ticket on your Account. File attachments are used to assist our
18234
18236
Support team in resolving your Ticket. Examples of attachments
18235
18237
are screen shots and text files that provide additional information.
0 commit comments