ChatofyDevelopersv1.0
API KeysWebhooks
Chatofy API
/
Getting Started
API Resources
API v1.0 Live
99.99%
Developer APICampaignsGet Campaign

Get Campaign

Gets a single campaign with full metadata and campaign_analytics array.

GET/api/v1/campaign/:id

Query Parameters

1 parameter
:iduuidrequired

Campaign UUID (from List Campaigns response).

Response Payload

200 OKapplication/json
statusstring

"1" = Success, "0" = Failure.

messageobject

The response data payload.

Code Snippets & Examples

curl -X GET "https://app.chatofy.in/api/v1/campaign/e4443e21-aaaa-0000-0000-000000000001" \
  -H "Authorization: Bearer YOUR_API_KEY"

Was this endpoint guide helpful?

Previous Endpoint
List Campaigns
Next Endpoint
Campaign Logs
© 2026 Chatofy Cloud Platform. All rights reserved.
Enterprise SLA•99.99% Guaranteed
curl -X GET "https://app.chatofy.in/api/v1/campaign/e4443e21-aaaa-0000-0000-000000000001" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 OKapplication/json
{
  "success": true,
  "message": "Campaign retrieved successfully",
  "data": {
    "campaign": {
      "id": "e4443e21-0000-0000-0000-000000000000",
      "name": "Summer Promo",
      "status": "completed",
      "template_name": "summer_sale_2026",
      "created_at": "2026-06-15T00:00:00.000Z",
      "campaign_analytics": [
        {
          "sent_count": 500,
          "delivered_count": 498,
          "read_count": 350,
          "replied_count": 45,
          "failed_count": 2,
          "queued_count": 0
        }
      ]
    }
  }
}