> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev.setoo.work/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get SMS campaign

> Retrieve details and message templates of an SMS campaign

Retrieves configuration and template mappings of an SMS campaign by its unique UUID.

### Path parameters

<ParamField path="id" type="string" required>
  The unique UUID of the SMS campaign.
</ParamField>

<CodeGroup>
  ```bash curl theme={null}
  curl -X GET https://api.agentic-os.com/api/v1/sms-agent/campaigns/66666666-6666-6666-6666-666666666666 \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.agentic-os.com/api/v1/sms-agent/campaigns/66666666-6666-6666-6666-666666666666",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  print(response.json())
  ```

  ```javascript Node theme={null}
  const response = await fetch(
    "https://api.agentic-os.com/api/v1/sms-agent/campaigns/66666666-6666-6666-6666-666666666666",
    {
      method: "GET",
      headers: { Authorization: `Bearer ${API_KEY}` },
    },
  );
  const data = await response.json();
  console.log(data);
  ```
</CodeGroup>

### Response

```json theme={null}
{
  "id": "66666666-6666-6666-6666-666666666666",
  "tenantId": "990e8400-e29b-41d4-a716-446655440000",
  "agentId": "11111111-1111-1111-1111-111111111111",
  "name": "Post-Call SMS Follow-up",
  "senderNumber": "+15550199",
  "senderProvider": "TWILIO",
  "isActive": true,
  "templates": [
    {
      "id": "sms_tpl_1",
      "callStatus": "ANSWERED",
      "messageBody": "Hi {{name}}, thanks for your time today! You can book your onboarding session here: https://agentic-os.com/onboarding",
      "dltSenderId": null,
      "dltTemplateId": null
    },
    {
      "id": "sms_tpl_2",
      "callStatus": "UNANSWERED",
      "messageBody": "Hi {{name}}, we tried reaching you regarding your inquiry. Please call us back or reply to this message!",
      "dltSenderId": null,
      "dltTemplateId": null
    }
  ],
  "createdAt": "2026-06-01T12:00:00.000Z",
  "updatedAt": "2026-06-01T12:00:00.000Z"
}
```
