# countryCode

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /serviceSettings/APIKEY:
    get:
      summary: countryCode
      deprecated: false
      description: >-
        This setting is specifically for sending messages to phone numbers that
        start with zero and there is no country code in those numbers, in this
        case the country code will replace the first zero.


        This feature is used for numbers that did not enter the country code
        while sending the message.


        If you are sending messages to WhatsApp numbers in different countries,
        make sure to include the full number with the relevant country code when
        sending the message.  

        If you enter the WhatsApp number in full when sending the message, this
        setting will be ignored.
      tags:
        - Settings
      parameters:
        - name: countryCode
          in: query
          description: Country code
          required: true
          example: '44'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  connectionStatus:
                    type: string
                  whatsAppNumber:
                    type: string
                  countrycode:
                    type: string
                  statusCountryCode:
                    type: string
                  whatsAppReceiveMessage:
                    type: string
                  webhook:
                    type: string
                  level:
                    type: string
                required:
                  - status
                  - connectionStatus
                  - whatsAppNumber
                  - countrycode
                  - statusCountryCode
                  - whatsAppReceiveMessage
                  - webhook
                  - level
                x-apidog-orders:
                  - status
                  - connectionStatus
                  - whatsAppNumber
                  - countrycode
                  - statusCountryCode
                  - whatsAppReceiveMessage
                  - webhook
                  - level
              example:
                status: 'true'
                connectionStatus: Connected to WhatsApp
                whatsAppNumber: '11234567890'
                countrycode: '44'
                statusCountryCode: >-
                  When sending a message, if the phone number starts with zero,
                  the 44 will replace zero
                whatsAppReceiveMessage: Disable
                webhook: ''
                level: '3'
          headers: {}
          x-apidog-name: countryCode
      security: []
      x-apidog-folder: Settings
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/545232/apis/api-7458062-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.whatsiplus.com
    description: WhatsApp API - WhatsiPlus Documentation
security: []

```
