HomeDocumentationCode SamplesAnnouncementsModelsRelease NotesFAQGitHubVideos
Developer HubAPI StatusSupport
Documentation
Developer HubAPI StatusSupport

App Integrations API v2024-04-01 Reference

Send notifications to sellers on Seller Central.

Overview

With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.

Version information

Version : 2024-04-01

Contact information

Contact : Selling Partner API Developer Support
Contact URL : https://sellercentral.amazon.com/gp/mws/contactus.html

License information

License : Apache License 2.0
License URL : http://www.apache.org/licenses/LICENSE-2.0

URI scheme

Host : sellingpartnerapi-na.amazon.com
Schemes : HTTPS

Consumes

  • application/json

Produces

  • application/json

Operations

createNotification
deleteNotifications
recordActionFeedback

Paths

POST /appIntegrations/2024-04-01/notifications

Operation: createNotification

Description

Create a notification for sellers in Seller Central.

Usage Plan:

Rate (requests per second)Burst
15

The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to Usage Plans and Rate Limits in the Selling Partner API.

Parameters

TypeNameDescriptionSchema
Bodybody
required
The request body for the createNotification operation.CreateNotificationRequest

Responses

HTTP CodeDescriptionSchema
200Successful creation of notification with the identifier captured in response.
Headers :
x-amzn-RateLimit-Limit (string) : Your rate limit (requests per second) for this operation.
x-amzn-RequestId (string) : Unique request reference identifier.
CreateNotificationResponse

For error status codes, descriptions and schemas, see Error responses and schemas.

Example HTTP request

Request body
{
  "body" : {
    "templateId" : "PRICE_CHANGE",
    "marketplaceId" : "ATVPDKIKX0DER",
    "notificationParameters" : {
      "priceValue" : "200"
    }
  }
}

POST /appIntegrations/2024-04-01/notifications/deletion

Operation: deleteNotifications

Description

Remove your application's notifications from the Appstore notifications dashboard.

Usage Plan:

Rate (requests per second)Burst
15

The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to Usage Plans and Rate Limits in the Selling Partner API.

Parameters

TypeNameDescriptionSchema
Bodybody
required
The request body for the deleteNotifications operation.DeleteNotificationsRequest

Responses

HTTP CodeDescriptionSchema
204Successfully processed the deleteNotifications request.
Headers :
x-amzn-RateLimit-Limit (string) : Your rate limit (requests per second) for this operation.
x-amzn-RequestId (string) : Unique request reference identifier.
No Content

For error status codes, descriptions and schemas, see Error responses and schemas.

Example HTTP request

Request body
{
  "body" : {
    "templateId" : "PRICE_CHANGE",
    "deletionReason" : "INCORRECT_CONTENT"
  }
}

POST /appIntegrations/2024-04-01/notifications/{notificationId}/feedback

Operation: recordActionFeedback

Description

Records the seller's response to a notification.

Usage Plan:

Rate (requests per second)Burst
15

The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to Usage Plans and Rate Limits in the Selling Partner API.

Parameters

TypeNameDescriptionSchema
PathnotificationId
required
A notificationId uniquely identifies a notification.string
Bodybody
required
The request body for the recordActionFeedback operation.RecordActionFeedbackRequest

Responses

HTTP CodeDescriptionSchema
204Successfully processed the recordActionFeedback request.
Headers :
x-amzn-RateLimit-Limit (string) : Your rate limit (requests per second) for this operation.
x-amzn-RequestId (string) : Unique request reference identifier.
No Content

For error status codes, descriptions and schemas, see Error responses and schemas.

Example HTTP request

Request body
{
  "body" : {
    "feedbackActionCode" : "SELLER_ACTION_COMPLETED"
  }
}

Error Responses and Schemas

This table contains HTTP status codes and associated information for error responses.

HTTP CodeDescriptionSchema
400Request has missing or invalid parameters and cannot be parsed.
Headers:
x-amzn-RateLimit-Limit (string):Your rate limit (requests per second) for this operation.
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
401The request's Authorization header is not formatted correctly or does not contain a valid token.
Headers:
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
403Indicates that access to the resource is forbidden. Possible reasons include Access Denied, Unauthorized, Expired Token, or Invalid Signature.
Headers:
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
404The resource specified does not exist.
Headers:
x-amzn-RateLimit-Limit (string):Your rate limit (requests per second) for this operation.
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
413The request size exceeded the maximum accepted size.
Headers:
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
415The request payload is in an unsupported format.
Headers:
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
429The frequency of requests was greater than allowed.
Headers:
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
500An unexpected condition occurred that prevented the server from fulfilling the request.
Headers:
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList
503Temporary overloading or maintenance of the server.
Headers:
x-amzn-RequestId (string):Unique request reference identifier.
ErrorList

Definitions

Error

Error response returned when the request is unsuccessful.

NameDescriptionSchema
code
required
An error code that identifies the type of error that occurred.string
message
required
A message that describes the error condition.string
details
optional
Additional details that can help the caller understand or fix the issue.string

ErrorList

A list of error responses returned when a request is unsuccessful.

NameDescriptionSchema
errors
required
Error response returned when the request is unsuccessful.< Error > array

CreateNotificationRequest

The request for the createNotification operation.

NameDescriptionSchema
templateId
required
The unique identifier of the notification template you used to onboard your application.string
notificationParameters
required
The parameters specified in the template you used to onboard your application.NotificationParameters
marketplaceId
optional
An encrypted marketplace identifier for the posted notification.string

NotificationParameters

The dynamic parameters required by the notification templated specified by templateId.

Type : object

CreateNotificationResponse

The response for the createNotification operation.

NameDescriptionSchema
notificationId
optional
The unique identifier assigned to each notification.string

DeleteNotificationsRequest

The request for the deleteNotifications operation.

NameDescriptionSchema
templateId
required
The unique identifier of the notification template you used to onboard your application.string
deletionReason
required
The unique identifier that maps each notification status to a reason code.enum (DeletionReason)

RecordActionFeedbackRequest

The request for the recordActionFeedback operation.

NameDescriptionSchema
feedbackActionCode
required
The unique identifier for each notification status.enum (FeedbackActionCode)

FeedbackActionCode

The unique identifier for each notification status.

Type : enum

ValueDescription
SELLER_ACTION_COMPLETEDThe seller completed the action attached to the posted notification.

DeletionReason

The unique identifier that maps each notification status to a reason code.

Type : enum

ValueDescription
INCORRECT_CONTENTThe notification's content is recognized to be incorrect.
INCORRECT_RECIPIENTThe notification was sent to incorrect seller.