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-12Lines changed: 43 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -156,6 +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 Deprecated | The request was successful, but involved a deprecated endpoint. The response body includes a "warnings" array containing warning messages. |
159
160
| 400 Bad Request | You submitted an invalid request (missing parameters, etc.). |
160
161
| 401 Unauthorized | You failed to authenticate for this resource. |
161
162
| 403 Forbidden | You are authenticated, but don't have permission to do this. |
@@ -1956,7 +1957,7 @@ paths:
1956
1957
schema:
1957
1958
$ref: '#/components/schemas/Payment'
1958
1959
'202':
1959
-
$ref: '#/components/responses/WarningResponse'
1960
+
$ref: '#/components/responses/AcceptedResponse'
1960
1961
default:
1961
1962
$ref: '#/components/responses/ErrorResponse'
1962
1963
x-code-samples:
@@ -2019,15 +2020,21 @@ paths:
2019
2020
x-linode-cli-command: account
2020
2021
post:
2021
2022
x-linode-grant: read_only
2023
+
deprecated: true
2024
+
x-linode-cli-skip: true
2022
2025
tags:
2023
2026
- Account
2024
2027
summary: PayPal Payment Stage
2025
-
description: >
2028
+
description: |
2026
2029
This begins the process of submitting a Payment via PayPal. After calling
2027
2030
this endpoint, you must take the resulting `payment_id` along with
0 commit comments