GET
/api/v1/utm-templates/:idGet a UTM template
Returns a single UTM template by ID.
Authorization
Authorizationstringheaderrequired
Bearer token. Format: Bearer YOUR_API_KEY
Path Parameters
idstringpathrequired
The ID of the UTM template to retrieve.
curl https://app.brevr.io/api/v1/utm-templates/utm_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"{
"template": {
"id": "utm_abc123",
"workspaceId": "ws_xyz",
"name": "Email Newsletter",
"source": "newsletter",
"medium": "email",
"campaign": "weekly-digest",
"term": null,
"content": null,
"createdAt": "2024-06-01T10:00:00.000Z",
"updatedAt": "2024-06-01T10:00:00.000Z"
}
}Last updated on