# Get 10DLC Campaign

## GET or POST Request

{% hint style="info" %}
<https://v1.api19.com/campaigns/campaign/get>
{% endhint %}

Get details of a specific 10DLC campaign

{% tabs %}
{% tab title="Curl Post" %}
{% code title="Curl (POST)" %}

```bash
curl https://v1.api19.com/campaigns/campaign/get \
 -d 'key=api_token' \
 -d 'id=C12345'
```

{% endcode %}
{% endtab %}

{% tab title="Curl Get" %}
{% code title="Curl (GET)" %}

```bash
curl https://v1.api19.com/campaigns/campaign/get?key=apikey&id=C12345
```

{% endcode %}
{% endtab %}

{% tab title="JSON Response" %}
{% code title="Response (application/json)" %}

```json
{
	"status": "ok",
	"data": {
		"id": "C12345",
		"crid": "CMPN123456789",
		"brand_id": "B1A2C3D4E5",
		"campaign_description": "Customer notifications and alerts",
		"use_case_type": "2FA",
		"status": "APPROVED",
		"sample_message_1": "Your order #12345 has shipped",
		"opted_in_start": "START",
		"opted_in_stop": "STOP",
		"opted_in_help": "HELP"
	}
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Parameters

* `id` (required) - Campaign ID (not crid)
