{
  "info": {
    "name": "Axis Unified Inbox API — Evolution (WA)",
    "description": "# Axis Unified Inbox API\n\nEvolution (WA) — 22 endpoints, generated from the Laravel route table on Tue, 04 Aug 2026 12:47:23 GMT.\n\n## Getting started\n\n1. Set the `baseUrl` collection variable if you are not using the default.\n2. Run **Authentication → `POST /user/login`** with your email and password.\n   A test script stores the returned JWT into `{{access_token}}` automatically.\n3. Every other request inherits that bearer token — just hit Send.\n\nRequests using an API key instead read `{{api_key}}` or `{{engage_key}}`; set those\nvariables if you need them.\n\n## Variables\n\n| Variable | Purpose |\n| --- | --- |\n| `baseUrl` | API host, e.g. `https://api.axis.im` |\n| `access_token` | JWT bearer token (auto-filled by the login request) |\n| `api_key` | Value for the `X-API-KEY` header |\n| `engage_key` | Value for the `X-Axis-Admin-API-Key` header |",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "axis-api-docs"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{access_token}}",
        "type": "string"
      }
    ]
  },
  "item": [
    {
      "name": "GET /evolution/campaigns",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@index`"
      },
      "response": []
    },
    {
      "name": "POST /evolution/campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@store`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /evolution/campaigns-audience/all",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns-audience/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns-audience",
            "all"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@allAudience`"
      },
      "response": []
    },
    {
      "name": "DELETE /evolution/campaigns/{id}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@destroy`"
      },
      "response": []
    },
    {
      "name": "GET /evolution/campaigns/{id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@show`"
      },
      "response": []
    },
    {
      "name": "PUT /evolution/campaigns/{id}",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@update`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /evolution/campaigns/{id}/audience",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns/:id/audience",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns",
            ":id",
            "audience"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@campaignAudience`"
      },
      "response": []
    },
    {
      "name": "POST /evolution/campaigns/upload-media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/campaigns/upload-media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "campaigns",
            "upload-media"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\EvolutionCampaignController@uploadMedia`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /evolution/instance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@store`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "DELETE /evolution/instance/{id}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@delete`"
      },
      "response": []
    },
    {
      "name": "GET /evolution/instance/{id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@show`"
      },
      "response": []
    },
    {
      "name": "GET /evolution/instance/connect/{id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance/connect/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance",
            "connect",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@connect`"
      },
      "response": []
    },
    {
      "name": "DELETE /evolution/instance/logout/{id}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance/logout/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance",
            "logout",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@logout`"
      },
      "response": []
    },
    {
      "name": "POST /evolution/instance/presence/{id}",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance/presence/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance",
            "presence",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@setPresence`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /evolution/instance/restart/{id}",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance/restart/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance",
            "restart",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@restart`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /evolution/instance/state/{id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instance/state/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instance",
            "state",
            ":id"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@connectionState`"
      },
      "response": []
    },
    {
      "name": "GET /evolution/instances",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instances",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instances"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@index`"
      },
      "response": []
    },
    {
      "name": "GET /evolution/instances/{id}/webhook",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instances/:id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instances",
            ":id",
            "webhook"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@findWebhook`"
      },
      "response": []
    },
    {
      "name": "POST /evolution/instances/{id}/webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instances/:id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instances",
            ":id",
            "webhook"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@setWebhook`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /evolution/instances/fetch",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/instances/fetch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "instances",
            "fetch"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@fetch`"
      },
      "response": []
    },
    {
      "name": "GET /evolution/status",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "status"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Evolution\\InstanceController@status`"
      },
      "response": []
    },
    {
      "name": "POST /evolution/webhook/receive/{event?}",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/evolution/webhook/receive/:event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "evolution",
            "webhook",
            "receive",
            ":event"
          ],
          "variable": [
            {
              "key": "event",
              "value": "",
              "description": "event identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Evolution\\WebhookController@handle`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.axis.im",
      "type": "string"
    },
    {
      "key": "access_token",
      "value": "",
      "type": "string"
    },
    {
      "key": "api_key",
      "value": "",
      "type": "string"
    },
    {
      "key": "engage_key",
      "value": "",
      "type": "string"
    }
  ]
}