> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get store configuration

> Returns the store configuration for the specified platform.
Sensitive fields (private keys, service account credentials) are masked
with boolean flags (has_connect_private_key, has_service_account_key, etc.).




## OpenAPI

````yaml /api-reference/rest-api-v4.yaml get /project-settings/stores/{platform}
openapi: 3.0.3
info:
  title: Qonversion REST API v4
  version: '4.0'
  description: >-
    Qonversion REST API v4 follows REST standards. It has predictable
    resource-oriented URLs, accepts JSON-encoded request bodies, returns
    JSON-encoded responses, and uses standard HTTP response codes,
    authentication, and verbs.
servers:
  - url: https://api.qonversion.io/v4
    description: Production
security:
  - secretAuth: []
tags:
  - name: Users
    description: Retrieve Qonversion users
  - name: User Properties
    description: Manage user-level attributes
  - name: Identities
    description: Link Qonversion users to your own auth IDs
  - name: Entitlements
    description: Entitlement definitions and user grants
  - name: Purchases
    description: A user's purchase history
  - name: Products
    description: Products configured in the Qonversion dashboard
  - name: Customers
    description: Aggregated customer records, properties, permissions, and metrics
  - name: Segments
    description: Dynamic and system segments of users
  - name: Experiments
    description: Paywall and offering A/B experiments
  - name: Screens
    description: No-code paywall screens — CRUD, publish, analytics
  - name: Analytics
    description: Charts, cards, cohorts, LTV, and insights
  - name: Exports
    description: Asynchronous data exports
  - name: Events
    description: Event catalog
  - name: Scheduled Reports
    description: Recurring reports delivered to external destinations
  - name: Integrations
    description: Third-party integrations configuration
  - name: Automations
    description: Event-driven automations
  - name: Project Settings
    description: Project-level configuration, secret, and store credentials
paths:
  /project-settings/stores/{platform}:
    get:
      tags:
        - Project Settings
      summary: Get store configuration
      description: >
        Returns the store configuration for the specified platform.

        Sensitive fields (private keys, service account credentials) are masked

        with boolean flags (has_connect_private_key, has_service_account_key,
        etc.).
      operationId: v4GetProjectStoreConfig
      parameters:
        - name: platform
          in: path
          required: true
          description: Store platform identifier.
          schema:
            type: string
            enum:
              - apple
              - google
      responses:
        '200':
          description: Store configuration for the platform.
          headers:
            Cache-Control:
              schema:
                type: string
                example: no-store
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/V4AppleStoreConfig'
                  - $ref: '#/components/schemas/V4GoogleStoreConfig'
                discriminator:
                  propertyName: platform
                  mapping:
                    apple:
                      $ref: '#/components/schemas/V4AppleStoreConfig'
                    google:
                      $ref: '#/components/schemas/V4GoogleStoreConfig'
        '400':
          description: Invalid platform
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
        '404':
          description: Store config not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
        '429':
          description: Rate limit exceeded.
          headers:
            Retry-After:
              schema:
                type: integer
                example: 60
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
        '502':
          description: Upstream service failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
        '504':
          description: Upstream timeout
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Error'
      security:
        - secretAuth: []
components:
  schemas:
    V4AppleStoreConfig:
      type: object
      required:
        - object
        - url
        - platform
        - has_shared_secret
        - has_connect_private_key
        - has_iap_private_key
      properties:
        object:
          type: string
          enum:
            - store_config
        url:
          type: string
          example: /v4/project-settings/stores/apple
        platform:
          type: string
          enum:
            - apple
        has_shared_secret:
          type: boolean
          description: >-
            Whether the App-Specific Shared Secret is set. The value itself is
            never returned.
        app_id:
          type: string
          nullable: true
          description: App Store app ID.
        bundle_id:
          type: string
          nullable: true
          description: iOS bundle identifier.
        connect_key_identifier:
          type: string
          nullable: true
          description: App Store Connect API key identifier.
        has_connect_private_key:
          type: boolean
          description: Whether the ASC private key is set.
        connect_issuer_id:
          type: string
          nullable: true
          description: App Store Connect API issuer ID.
        iap_key_identifier:
          type: string
          nullable: true
          description: In-App Purchase API key identifier.
        has_iap_private_key:
          type: boolean
          description: Whether the IAP private key is set.
        iap_issuer_id:
          type: string
          nullable: true
          description: In-App Purchase API issuer ID.
    V4GoogleStoreConfig:
      type: object
      required:
        - object
        - url
        - platform
        - has_service_account_key
        - is_rtdn_validated
      properties:
        object:
          type: string
          enum:
            - store_config
        url:
          type: string
          example: /v4/project-settings/stores/google
        platform:
          type: string
          enum:
            - google
        package_name:
          type: string
          nullable: true
          description: Google Play package name.
        has_service_account_key:
          type: boolean
          description: Whether the Google service account key is set.
        bundle_id:
          type: string
          nullable: true
          description: Android bundle identifier.
        rtdn_topic:
          type: string
          nullable: true
          description: RTDN subscription topic.
        is_rtdn_validated:
          type: boolean
          description: Whether RTDN is validated.
        rtdn_last_message_at:
          type: string
          nullable: true
          description: ISO 8601 timestamp of last RTDN message. Null if never received.
          example: '2026-01-15T10:00:00Z'
    V4Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - type
            - code
            - message
          properties:
            type:
              type: string
              enum:
                - request
                - resource
                - logical
                - internal
            code:
              type: string
              description: |
                Machine-readable snake_case error code. Examples include
                `invalid_data`, `invalid_request`, `invalid_product_id`,
                `not_found`, `already_exists`, `offering_already_exists`,
                `product_not_in_project`, `cannot_set_main_directly`,
                `cannot_demote_main`, `cannot_patch_experiment_variant`,
                `cannot_delete_experiment_variant`, and
                `cannot_setmain_experiment_variant`. Resource-specific codes
                are documented on the corresponding reference page.
            message:
              type: string
              description: Human-readable description. May change; do not parse.
            details:
              type: array
              nullable: true
              description: Per-field validation errors, present on 400 validation failures.
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
  securitySchemes:
    secretAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_…
      description: >-
        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](/reference/v4/authentication). Never
        expose the Secret Key in client-side code.

````