Update Staged Rollout Binary

Add or remove binaries from a staged rollout.

For more information about staged rollouts, see Set a staged rollout in the Seller Portal online guide.

Request

PUT /seller/v2/content/stagedRolloutBinary

Parameters

Name

Type

In

Description

contentId

string

body

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

function

string[]

body

Required. Add or remove binaries from a staged rollout.

  • ADD: Add the binary specified by binarySeq to the staged rollout.
  • REMOVE: Remove the binary specified by binarySeq from the staged rollout.

binarySeq

string

body

Required. The binary seqence number associated with the binary to add or remove. This value is returned when you use the API to view the staged rollout binaries (see View Staged Rollout Binaries).

curl -i -X PUT \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <your-access-token>" \
  -H "service-account-id: <your-service-account-id>" \
  -d '{
        "contentId": "000007654321",
        "function": "ADD",
        "binarySeq": "1"
}' \
"https://devapi.samsungapps.com/seller/v2/content/stagedRolloutBinary"

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

"resultCode": "0000",
"resultMessage": "Ok"

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