Change App Status

Change the status of an app registered in Seller Portal using the Content Publish API. You can distribute, suspend, or terminate an app.

Request

POST /seller/contentStatusUpdate
Name

Type

In

Description

contentId

string

body

Required. The unique 12-digit identifier of the app.

contentStatus

string

body

Required. The status to which to change your app.

Set to one of the following values:

  • FOR_SALE: To distribute an app that has the status of READY_FOR_SALE or READY_FOR_CHANGE.
  • SUSPENDED: To suspend the sale of an app when the app has the status of FOR_SALE.
  • TERMINATED: To end the sale of an app when the app has the status of SUSPENDED.

curl -i -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <your-access-token>" \
  -H "service-account-id: <your-service-account-id>" \
  -d '{"contentId": "000007654321", "contentStatus" :"FOR_SALE"}' \
  "https://devapi.samsungapps.com/seller/contentStatusUpdate"

See Authorization Header Parameters for more information about the authorization header requirements for the Content Publish API (which is part of the Galaxy Store Developer API).

Response

Success

Status: 204 No Content

See Failure response codes for a list of possible response codes when a request fails.