Update Closed Beta Test

Add or remove beta testers for your closed beta test and specify where you receive feedback, using the Content Publish API.

Request

PUT /seller/v2/content/betaTest

Parameters

Name

Type

In

Description

contentId

string

body

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

betaTestersToBeAdded

string[]

body

Optional. The Samsung account ID(s) to be added to the list of beta testers. The ID is typically the email address that is associated with the Samsung account.

Up to 1,000 accounts can be added per transaction.

betaTestersToBeDeleted

string[]

body

Optional. The Samsung account ID(s) to be deleted from the list of beta testers. The ID is typically the email address that is associated with the Samsung account.

Up to 1,000 accounts can be deleted per transaction.

feedbackChannel

string

body

Optional. An email account or URL address that receives feedback from your testers.

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",
        "betaTestersToBeAdded": ["12345@company.com", "67890@company.com"],
        "betaTestersToBeDeleted": ["13579@company.com", "24680@company.com"],
        "feedbackChannel": "beta-test-feedback@yourcompany.com"
      }' \
"https://devapi.samsungapps.com/seller/v2/content/betaTest"

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

additionFailedTesters

string[]

The Samsung account IDs that you specified that are not associated with a Samsung account.

deletionFailedTesters

string[]

The Samsung account IDs that you specified that are not associated with a Samsung account.

Success

"resultCode": "0000",
"resultMessage": "Ok"
"data" : {
  "additionFailedTesters": ["67890@company.com"],
  "deletionFailedTesters": ["24680@company.com"]
}

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