Skip to content

Commit 7c93eb1

Browse files
committed
Update Messaging model
1 parent 45eed92 commit 7c93eb1

File tree

1 file changed

+1
-197
lines changed

1 file changed

+1
-197
lines changed

models/messaging-api-model/messaging.json

Lines changed: 1 addition & 197 deletions
Original file line numberDiff line numberDiff line change
@@ -916,193 +916,6 @@
916916
}
917917
}
918918
},
919-
"/messaging/v1/orders/{amazonOrderId}/messages/negativeFeedbackRemoval": {
920-
"post": {
921-
"tags": [
922-
"messaging"
923-
],
924-
"description": "Sends a non-critical message that asks a buyer to remove their negative feedback. This message should only be sent after the seller has resolved the buyer's problem.\n\n**Usage Plan:**\n\n| Rate (requests per second) | Burst |\n| ---- | ---- |\n| 1 | 5 |\n\nThe `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).",
925-
"operationId": "createNegativeFeedbackRemoval",
926-
"parameters": [
927-
{
928-
"name": "amazonOrderId",
929-
"in": "path",
930-
"description": "An Amazon order identifier. This identifies the order for which a message is sent.",
931-
"required": true,
932-
"type": "string"
933-
},
934-
{
935-
"name": "marketplaceIds",
936-
"in": "query",
937-
"description": "A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.",
938-
"required": true,
939-
"type": "array",
940-
"items": {
941-
"type": "string"
942-
},
943-
"maxItems": 1
944-
}
945-
],
946-
"responses": {
947-
"201": {
948-
"description": "The negativeFeedbackRemoval message was created for the order.",
949-
"schema": {
950-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
951-
},
952-
"headers": {
953-
"x-amzn-RateLimit-Limit": {
954-
"type": "string",
955-
"description": "Your rate limit (requests per second) for this operation."
956-
},
957-
"x-amzn-RequestId": {
958-
"type": "string",
959-
"description": "Unique request reference identifier."
960-
}
961-
},
962-
"x-amzn-api-sandbox": {
963-
"static": [
964-
{
965-
"request": {
966-
"parameters": {
967-
"amazonOrderId": {
968-
"value": "123-1234567-1234567"
969-
}
970-
}
971-
},
972-
"response": {}
973-
}
974-
]
975-
}
976-
},
977-
"400": {
978-
"description": "Request has missing or invalid parameters and cannot be parsed.",
979-
"schema": {
980-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
981-
},
982-
"headers": {
983-
"x-amzn-RateLimit-Limit": {
984-
"type": "string",
985-
"description": "Your rate limit (requests per second) for this operation."
986-
},
987-
"x-amzn-RequestId": {
988-
"type": "string",
989-
"description": "Unique request reference identifier."
990-
}
991-
},
992-
"x-amzn-api-sandbox": {
993-
"static": [
994-
{
995-
"request": {
996-
"parameters": {
997-
"amazonOrderId": {
998-
"value": "123-1234567-0000000"
999-
}
1000-
}
1001-
},
1002-
"response": {
1003-
"errors": [
1004-
{
1005-
"code": "InvalidInput",
1006-
"message": "Invalid Input",
1007-
"details": ""
1008-
}
1009-
]
1010-
}
1011-
}
1012-
]
1013-
}
1014-
},
1015-
"403": {
1016-
"description": "Indicates that access to the resource is forbidden. Possible reasons include Access Denied, Unauthorized, Expired Token, or Invalid Signature.",
1017-
"schema": {
1018-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
1019-
},
1020-
"headers": {
1021-
"x-amzn-RequestId": {
1022-
"type": "string",
1023-
"description": "Unique request reference identifier."
1024-
}
1025-
}
1026-
},
1027-
"404": {
1028-
"description": "The resource specified does not exist.",
1029-
"schema": {
1030-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
1031-
},
1032-
"headers": {
1033-
"x-amzn-RateLimit-Limit": {
1034-
"type": "string",
1035-
"description": "Your rate limit (requests per second) for this operation."
1036-
},
1037-
"x-amzn-RequestId": {
1038-
"type": "string",
1039-
"description": "Unique request reference identifier."
1040-
}
1041-
}
1042-
},
1043-
"413": {
1044-
"description": "The request size exceeded the maximum accepted size.",
1045-
"schema": {
1046-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
1047-
},
1048-
"headers": {
1049-
"x-amzn-RequestId": {
1050-
"type": "string",
1051-
"description": "Unique request reference identifier."
1052-
}
1053-
}
1054-
},
1055-
"415": {
1056-
"description": "The request payload is in an unsupported format.",
1057-
"schema": {
1058-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
1059-
},
1060-
"headers": {
1061-
"x-amzn-RequestId": {
1062-
"type": "string",
1063-
"description": "Unique request reference identifier."
1064-
}
1065-
}
1066-
},
1067-
"429": {
1068-
"description": "The frequency of requests was greater than allowed.",
1069-
"schema": {
1070-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
1071-
},
1072-
"headers": {
1073-
"x-amzn-RequestId": {
1074-
"type": "string",
1075-
"description": "Unique request reference identifier."
1076-
}
1077-
}
1078-
},
1079-
"500": {
1080-
"description": "An unexpected condition occurred that prevented the server from fulfilling the request.",
1081-
"schema": {
1082-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
1083-
},
1084-
"headers": {
1085-
"x-amzn-RequestId": {
1086-
"type": "string",
1087-
"description": "Unique request reference identifier."
1088-
}
1089-
}
1090-
},
1091-
"503": {
1092-
"description": "Temporary overloading or maintenance of the server.",
1093-
"schema": {
1094-
"$ref": "#/definitions/CreateNegativeFeedbackRemovalResponse"
1095-
},
1096-
"headers": {
1097-
"x-amzn-RequestId": {
1098-
"type": "string",
1099-
"description": "Unique request reference identifier."
1100-
}
1101-
}
1102-
}
1103-
}
1104-
}
1105-
},
1106919
"/messaging/v1/orders/{amazonOrderId}/messages/confirmOrderDetails": {
1107920
"post": {
1108921
"tags": [
@@ -3047,15 +2860,6 @@
30472860
},
30482861
"description": "The response schema for the createConfirmDeliveryDetails operation."
30492862
},
3050-
"CreateNegativeFeedbackRemovalResponse": {
3051-
"type": "object",
3052-
"properties": {
3053-
"errors": {
3054-
"$ref": "#/definitions/ErrorList"
3055-
}
3056-
},
3057-
"description": "The response schema for the createNegativeFeedbackRemoval operation."
3058-
},
30592863
"CreateLegalDisclosureRequest": {
30602864
"type": "object",
30612865
"properties": {
@@ -3277,4 +3081,4 @@
32773081
"description": "Error response returned when the request is unsuccessful."
32783082
}
32793083
}
3280-
}
3084+
}

0 commit comments

Comments
 (0)