{
    "info": {
        "name": "WisChat API",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "variable": [
        {
            "key": "base_url",
            "value": "http://v2.wis.chat"
        },
        {
            "key": "tid",
            "value": "PHONE_NUMBER_ID"
        },
        {
            "key": "token",
            "value": "TU_API_TOKEN"
        }
    ],
    "item": [
        {
            "name": "Enviar texto",
            "request": {
                "method": "POST",
                "header": [
                    {
                        "key": "Authorization",
                        "value": "Bearer {{token}}"
                    },
                    {
                        "key": "Content-Type",
                        "value": "application/json"
                    }
                ],
                "url": {
                    "raw": "{{base_url}}/api/v22.0/{{tid}}/messages",
                    "host": [
                        "{{base_url}}"
                    ],
                    "path": [
                        "api",
                        "v22.0",
                        "{{tid}}",
                        "messages"
                    ]
                },
                "body": {
                    "mode": "raw",
                    "raw": "{\"to\":\"593999999999\",\"type\":\"text\",\"text\":{\"body\":\"Hola desde mi ERP 👋\"}}"
                }
            }
        },
        {
            "name": "Enviar plantilla",
            "request": {
                "method": "POST",
                "header": [
                    {
                        "key": "Authorization",
                        "value": "Bearer {{token}}"
                    },
                    {
                        "key": "Content-Type",
                        "value": "application/json"
                    }
                ],
                "url": {
                    "raw": "{{base_url}}/api/v22.0/{{tid}}/messages",
                    "host": [
                        "{{base_url}}"
                    ],
                    "path": [
                        "api",
                        "v22.0",
                        "{{tid}}",
                        "messages"
                    ]
                },
                "body": {
                    "mode": "raw",
                    "raw": "{\"to\":\"593999999999\",\"type\":\"template\",\"template\":{\"name\":\"mi_plantilla\",\"language\":{\"code\":\"es\"},\"components\":[{\"type\":\"body\",\"parameters\":[{\"type\":\"text\",\"text\":\"Juan\"}]}]}}"
                }
            }
        },
        {
            "name": "Enviar imagen",
            "request": {
                "method": "POST",
                "header": [
                    {
                        "key": "Authorization",
                        "value": "Bearer {{token}}"
                    },
                    {
                        "key": "Content-Type",
                        "value": "application/json"
                    }
                ],
                "url": {
                    "raw": "{{base_url}}/api/v22.0/{{tid}}/messages",
                    "host": [
                        "{{base_url}}"
                    ],
                    "path": [
                        "api",
                        "v22.0",
                        "{{tid}}",
                        "messages"
                    ]
                },
                "body": {
                    "mode": "raw",
                    "raw": "{\"to\":\"593999999999\",\"type\":\"image\",\"image\":{\"link\":\"https://tu-dominio.com/imagen.jpg\",\"caption\":\"Factura\"}}"
                }
            }
        }
    ]
}