View Closed Beta Test

Get information about a closed beta test.

Request

GET /seller/v2/content/betaTest?contentId=000005085244&offset=0&limit=1000&appStatus=REGISTRATION

Parameters

Name

Type

In

Description

contentId

string

querystring

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

appStatus

string

querystring

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.

offset

string[]

querystring

Optional. The starting point or position in the dataset of beta testers.

The default value is 0.

limit

string[]

querystring

Optional. The maximum number of beta testers to include on each page of response data. The maximum allowed value is 1000.

The default value is 1000.

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/betaTest?contentId=000007654321&offset=0&limit=1000&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

Parameter

Type

Description

totalNumberOfBetaTesters

number

The total number of registered beta testers.

betaTesters

string[]

The registered beta tester's Samsung account IDs.

feedbackChannel

string

The email address or URL to which testers are sending feedback.

betaTestingUrl.android

string

The URL for beta testing on Android devices.

betaTestingUrl.instantPlay2

string

The URL for beta testing for Instant Plays 2.0.

Success

"resultCode": "0000",
"resultMessage": "Ok"
"data" : {
  "totalNumberOfBetaTesters": 4
  "betaTesters": ["12345@company.com", "67890@company.com"],
  "feedbackChannel": "closed-beta-test@company.com",
  "betaTestingUrl": {
    "android": "http://apps.samsung.com/betastore/closeAppDetail.as?appId=&cId=000007654321",
    "instantPlay2": "https://apps.samsung.com/n/cloudgame/play?content_id=000007654321&orientation=02"
  }
}

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