# Show customer accoutning configuration

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/billing/customer_accounting_configuration:
    get:
      summary: Show customer accoutning configuration
      deprecated: false
      description: ''
      tags:
        - >-
          API Reference/Management API/Core/Billing/Customer Accoutning
          Configurations
      parameters:
        - name: Content-Type
          in: header
          description: '[Details](doc-341635)'
          required: true
          example: application/json
          schema:
            type: string
            default: application/json
            const: application/json
        - name: X-User-Agent
          in: header
          description: Arbitrary identifier of your client. [Details](doc-341635)
          required: true
          example: '{{X_USER_AGENT}}'
          schema:
            type: string
            default: '{{X_USER_AGENT}}'
        - name: X-Product-Name
          in: header
          description: API Product for API context. [Details](doc-341635)
          required: true
          example: '{{PRODUCT_NAME}}'
          schema:
            type: string
            default: '{{PRODUCT_NAME}}'
        - name: X-Loyalty-Club-Slug
          in: header
          description: LoyaltyClub for API context. [Details](doc-342138)
          required: false
          example: '{{LOYALTY_CLUB_SLUG}}'
          schema:
            type: string
            default: '{{LOYALTY_CLUB_SLUG}}'
        - name: X-Customer
          in: header
          description: Customer for API context.  [Details](doc-342139)
          required: false
          example: '{{CUSTOMER_ID}}'
          schema:
            type: string
            default: '{{CUSTOMER_ID}}'
        - name: X-Client-Authorization
          in: header
          description: '[Token](doc-342128) Authorization.'
          example: '{{API_TOKEN}}'
          schema:
            type: string
            default: '{{API_TOKEN}}'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                x-apidog-refs: {}
                x-apidog-orders:
                  - customer_accounting_configuration
                properties:
                  customer_accounting_configuration:
                    $ref: '#/components/schemas/CustomerAccountingConfiguration'
                required:
                  - customer_accounting_configuration
                x-apidog-ignore-properties: []
              example:
                customer_accounting_configuration:
                  customer_id: 447
                  account_type: prepaid
                  currency: NOK
                  monthly_prepaid_refill_value: '1000'
                  balance_warning_value: 500
                  balance_warning_emails:
                    - john.doe@placewise.com
                  email_price: '0.1'
                  push_price: '0.05'
                  number_lookup_price: '0.05'
                  sms_domestic_price: '0.3'
                  sms_international_price: '1.0'
                  sms_country_price_overrides:
                    PL: '2.0'
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: >-
        API Reference/Management API/Core/Billing/Customer Accoutning
        Configurations
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/346351/apis/api-3804953-run
components:
  schemas:
    CustomerAccountingConfiguration:
      type: object
      properties:
        customer_id:
          type: integer
          examples:
            - 447
        account_type:
          type: string
          enum:
            - prepaid
            - postpaid
          examples:
            - prepaid
          x-apidog-enum:
            - value: prepaid
              name: ''
              description: ''
            - value: postpaid
              name: ''
              description: ''
        currency:
          type: string
          examples:
            - NOK
        monthly_prepaid_refill_value:
          type: string
          examples:
            - '1000'
        balance_warning_value:
          type: integer
          examples:
            - 500
        balance_warning_emails:
          type: array
          items:
            type: string
            examples:
              - john.doe@placewise.com
        email_price:
          type: string
          examples:
            - '0.1'
        push_price:
          type: string
          examples:
            - '0.05'
        number_lookup_price:
          type: string
          examples:
            - '0.05'
        sms_domestic_price:
          type: string
          examples:
            - '0.3'
        sms_international_price:
          type: string
          examples:
            - '1.0'
        sms_country_price_overrides:
          type: object
          properties: {}
          x-apidog-orders: []
          x-apidog-ignore-properties: []
      required:
        - customer_id
        - account_type
        - currency
        - monthly_prepaid_refill_value
        - balance_warning_value
        - balance_warning_emails
        - email_price
        - push_price
        - number_lookup_price
        - sms_domestic_price
        - sms_international_price
        - sms_country_price_overrides
      x-apidog-orders:
        - customer_id
        - account_type
        - currency
        - monthly_prepaid_refill_value
        - balance_warning_value
        - balance_warning_emails
        - email_price
        - push_price
        - number_lookup_price
        - sms_domestic_price
        - sms_international_price
        - sms_country_price_overrides
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.mpc.dev.placewise.com
    description: Staging
security: []

```