Returns one of the caller org's campaigns.
Returns one of the caller org's campaigns.
GET /v1/ad/campaigns/{id}
| Address | https://api.hanzo.ai/v1/ad/campaigns/{id} |
| Method | GET |
| Operation | get_ad_campaigns_by_id |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns one of the caller org's campaigns. An id another org owns reads as not found, so the response cannot confirm that it exists.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes |
Response
| Status | Body | Meaning |
|---|---|---|
200 | AdCampaign | ok |
200 body — 11 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
account | body | string | — | Account is the provider ad-account the campaign runs under, in Meta's act_<id> form. |
budget | body | integer | — | Budget is the campaign's authorized spend in MINOR units (cents). Negative clamps to 0. |
createdAt | body | integer | — | CreatedAt is when the campaign was first stored, in unix seconds. |
externalId | body | string | — | ExternalID is the ad network's own campaign id, written by a successful launch and by nothing else — an update never touches it. |
id | body | string | — | ID is the campaign's server-minted handle, "camp_" + 32 hex. |
name | body | string | — | Name is the campaign's display label, and the name Meta creates the campaign object under at launch. |
objective | body | string | — | Objective is the campaign goal spelled as the provider names it ("conversions", "OUTCOME_TRAFFIC"), passed through to the network verbatim at launch — Meta… |
platform | body | string | — | Platform is the ad network: meta, google, tiktok or x, and nothing else — a write naming another is 400. Empty stores as meta. |
spend | body | integer | — | Spend is spend-to-date in MINOR units (cents), as last written through create or update. Negative clamps to 0. |
status | body | string | — | Status is the lifecycle: draft, active, paused or completed, and nothing else — a write naming another is 400. |
updatedAt | body | integer | — | UpdatedAt is when the row was last written, in unix seconds — set by create, update and launch. |
Failure carries the platform error shape — see Errors.
Examples
hanzo ads campaigns get <id>import { Configuration, AdApi } from 'hanzoai';
const api = new AdApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getAdCampaignsById({ id: 'id' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import AdApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = AdApi(client).get_ad_campaigns_by_id(id='id')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.AdAPI.GetAdCampaignsById(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, ad_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = ad_api::get_ad_campaigns_by_id(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.AdApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new AdApi(client).getAdCampaignsById();The method above is the one at the current release of the document. [email protected] (npm) and [email protected] (PyPI) were generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl https://api.hanzo.ai/v1/ad/campaigns/<id> \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches ad through the ads tool, which names its 7 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_ads_campaigns"
}
}
}'How is this guide?