View Staged Rollout Rate

Get the default rollout rate and country-specific rollout rates of an app.

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

Request

GET /seller/v2/content/stagedRolloutRate

Parameters

Name

Type

In

Description

contentId

string

body

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

appStatus

string

body

Required. 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/stagedRolloutRate?contentId=000007654321&appStatus=REGISTRATION"

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

Name

Type

In

Description

rolloutRate

Integer

body

The default percentage of users to which your app is released in a country if a specific rollout rate is not set for the country.

countries[].countryCode

string

body

Country code of the country to which the specified rollout rate refers.

countries[].rolloutRate

integer

body

The percentage of users to which your app is released in the specified country.

Success

"resultCode": "0000",
"resultMessage": "Ok",
"data": {
  "rolloutRate": 30
  "countries": [{
    "countryCode": "USA",
    "rolloutRate": 30
  },
  {
    "countryCode": "KOR",
    "rolloutRate": 40
  }]
}

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