Skip to main content
GET
/
project-settings
/
stores
/
{platform}
Get store configuration
curl --request GET \
  --url https://api.qonversion.io/v4/project-settings/stores/{platform} \
  --header 'Authorization: Bearer <token>'
{
  "object": "store_config",
  "url": "/v4/project-settings/stores/apple",
  "platform": "apple",
  "has_shared_secret": true,
  "has_connect_private_key": true,
  "has_iap_private_key": true,
  "app_id": "<string>",
  "bundle_id": "<string>",
  "connect_key_identifier": "<string>",
  "connect_issuer_id": "<string>",
  "iap_key_identifier": "<string>",
  "iap_issuer_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication using the project Secret Key (prefixed with sk_, or test_sk_ for sandbox). All v4 public endpoints require the Secret Key — see Authentication. Never expose the Secret Key in client-side code.

Path Parameters

platform
enum<string>
required

Store platform identifier.

Available options:
apple,
google

Response

Store configuration for the platform.

object
enum<string>
required
Available options:
store_config
url
string
required
Example:

"/v4/project-settings/stores/apple"

platform
enum<string>
required
Available options:
apple
has_shared_secret
boolean
required

Whether the App-Specific Shared Secret is set. The value itself is never returned.

has_connect_private_key
boolean
required

Whether the ASC private key is set.

has_iap_private_key
boolean
required

Whether the IAP private key is set.

app_id
string | null

App Store app ID.

bundle_id
string | null

iOS bundle identifier.

connect_key_identifier
string | null

App Store Connect API key identifier.

connect_issuer_id
string | null

App Store Connect API issuer ID.

iap_key_identifier
string | null

In-App Purchase API key identifier.

iap_issuer_id
string | null

In-App Purchase API issuer ID.