# connect

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /module/connect:
    get:
      summary: connect
      deprecated: false
      description: >-
        ## Connecting a service


        By executing this method, WhatsApp will be set up on the Whatsiplus
        service.


        **note**: Whenever the **create** method is executed, the **connect**
        method is automatically executed as well.


        ### Response


        - `status`: The status of the response.
            
        - `message`: Additional information or message related to the response.
            
        - `apiKey`: The API key associated with the connect method request.
      tags:
        - Partner
      parameters:
        - name: agentKey
          in: query
          description: ''
          required: true
          example: AGENTKEY
          schema:
            type: string
        - name: apiKey
          in: query
          description: ''
          required: true
          example: ServiceAPIKEY
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  message:
                    type: string
                  apiKey:
                    type: string
                required:
                  - status
                  - message
                  - apiKey
                x-apidog-orders:
                  - status
                  - message
                  - apiKey
              example:
                status: 'true'
                message: The service was connect successfully
                apiKey: ServiceAPIKEY
          headers: {}
          x-apidog-name: connect
      security: []
      x-apidog-folder: Partner
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/545232/apis/api-7505623-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.whatsiplus.com
    description: WhatsApp API - WhatsiPlus Documentation
security: []

```
