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

# Create Geo-Pricing Rule

> Automatically sets up localized pricing overrides for specific countries.

**Usage:** Global gaming studios deploying a script to adjust virtual currency prices dynamically across 50+ countries based on local inflation.



## OpenAPI

````yaml post /geo-pricing
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /geo-pricing:
    post:
      tags:
        - Geo Pricing
      summary: Create Geo-Pricing Rule
      description: >-
        Automatically sets up localized pricing overrides for specific
        countries.


        **Usage:** Global gaming studios deploying a script to adjust virtual
        currency prices dynamically across 50+ countries based on local
        inflation.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                country_code:
                  type: string
                discount_percentage:
                  type: number
                fixed_price:
                  type: number
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad Request
        '401':
          description: Unauthorized

````