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
Copy file name to clipboardExpand all lines: openapi.yaml
+43-13Lines changed: 43 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -156,7 +156,7 @@ info:
156
156
| 200 OK | The request was successful. |
157
157
| 202 Accepted | The request was successful, but processing has not been completed. The response body includes a "warnings" array containing the details of incomplete processes. |
158
158
| 204 No Content | The server successfully fulfilled the request and there is no additional content to send. |
159
-
| 299 Warning | The request was successful, but includes a warning such as usage of a deprecated endpoint. The response body includes a "warnings" array containing the details of any warnings. |
159
+
| 299 Deprecated | The request was successful, but involved a deprecated endpoint. The response body includes a "warnings" array containing warning messages. |
160
160
| 400 Bad Request | You submitted an invalid request (missing parameters, etc.). |
161
161
| 401 Unauthorized | You failed to authenticate for this resource. |
162
162
| 403 Forbidden | You are authenticated, but don't have permission to do this. |
@@ -1958,7 +1958,7 @@ paths:
1958
1958
schema:
1959
1959
$ref: '#/components/schemas/Payment'
1960
1960
'202':
1961
-
$ref: '#/components/responses/WarningResponse'
1961
+
$ref: '#/components/responses/AcceptedResponse'
1962
1962
default:
1963
1963
$ref: '#/components/responses/ErrorResponse'
1964
1964
x-code-samples:
@@ -2021,15 +2021,21 @@ paths:
2021
2021
x-linode-cli-command: account
2022
2022
post:
2023
2023
x-linode-grant: read_only
2024
+
deprecated: true
2025
+
x-linode-cli-skip: true
2024
2026
tags:
2025
2027
- Account
2026
2028
summary: PayPal Payment Stage
2027
-
description: >
2029
+
description: |
2028
2030
This begins the process of submitting a Payment via PayPal. After calling
2029
2031
this endpoint, you must take the resulting `payment_id` along with
0 commit comments