View Staged Rollout Binaries

Get a list of binaries that are configured for a staged rollout from an app.

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

Request

GET /seller/v2/content/stagedRolloutBinary

Parameters

Name

Type

In

Description

contentId

string

body

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

appStatus

string

body

Optional. The status of the app.
  • REGISTRATION: The app is being modified.
  • SALE: The app is for sale in Galaxy Store.

For a mapping of status values among Seller Portal, contentStatus, and appStatus, see Status Parameters Mapping.

curl -i -X GET \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <your-access-token>" \
  -H "service-account-id: <your-service-account-id>" \
"https://devapi.samsungapps.com/seller/v2/content/stagedRolloutBinary?contentId=000007654321"

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

Parameters

Parameter

Type

In

Description

binaries[].seq

Number

body

The binary seqence number associated with the binary.

binaries[].versionCode

string

body

Version of the binary file.

binaries[].fileName

string

body

Name of the binary file.

binaries[].fileSize

string

body

Size of the binary file.

binaries[].rolloutStatus

string

body

Status of the staged rollout:
  • ENABLED: A staged rollout has been applied to this binary.
  • DISABLED: This binary is not configured for a staged rollout
  • PAUSED: The staged rollout is paused and the binary is not being released to users.

binaries[].appStatus

string

body

The status of the app.
  • REGISTRATION: The app is being modified.
  • SALE: The app is for sale in Galaxy Store.

For a mapping of status values among Seller Portal, contentStatus, and appStatus, see Status Parameters Mapping.

Success

"resultCode": "0000",
"resultMessage": "Ok"
"data": {
  binaries: [{
    "seq": 1,
    "versionCode": "10202",
    "versionName": "1.2.2",
    "fileName": "App_20240704153013579.apk",
    "fileSize": "7.04 MB",
    "rolloutStatus": "ENABLED",
    "appStatus": "SALE"
  }]
}

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