Skip to main content
Solved

Create Campaign with Content (not just Recipients)


Forum|alt.badge.img+2

How do I create and scheduled a campaign using a template and be able to specify content fields like subject, from_name, etc.?

Here’s what I’ve tried:

Step 1: Create the template using POST to https://a.klaviyo.com/api/templates/, noting the template_id from the returned attributes

Step 2: Create the campaign using POST to https://a.klaviyo.com/api/campaigns/, noting the campaign’s message_id in the returned attributes

Step 3: Assign the campaign message to the template using POST (using the two values noted above) to https://a.klaviyo.com/api/campaign-message-assign-template/

Step 4: Update the campaign message with content attributes like subject, from_name, etc. using PATCH to https://a.klaviyo.com/api/campaign-messages/{messageId}/

I’ve tried reversing steps 3 and 4, same result is as follows:

When I look in the UI, the Campaign and Template are created. The campaign “Recipients” info is filled out, but the next step “Content” the Subject Line and Preview Text are empty, and more importantly, the template appears to not be selected.

It looks like in the old v1/v2 API, you could add the content attributes like subject, from_name, etc. directly using a POST to https://a.klaviyo.com/api/v1/campaigns, but it seems unwise to use those when I am warned “v1 / v2 legacy APIs are scheduled to be end-of-lifed on Jan 1, 2024.”

 

Best answer by Brian Turcotte

Hi @dev-flowers,

 

Would you be willing to share the actual API calls and responses that you are sending/receiving here? (with any sensitive info redacted - private API keys, IDs, etc.)

 

This will be helpful in diagnosing the issue, since it appears that what you’re describing is the correct way to accomplish this.

 

Best,

Brian

View original
Did this topic or the replies in the thread help you find an answer to your question?

4 replies

Brian Turcotte
Forum|alt.badge.img+37

Hi @dev-flowers!

 

I’m going to check with Engineering about this and then I’ll update the thread when I know more. Since these are relatively new endpoints, some functionality may require a deeper look. In the meantime, have you tested this to see if it actually does work with the old endpoints? Totally okay if not, I’m just curious.

 

Thanks,

Brian


Forum|alt.badge.img+2
  • Author
  • Contributor I
  • 2 replies
  • March 3, 2023

Yes sir, it works 100% with the old v1/v2 endpoints.


Brian Turcotte
Forum|alt.badge.img+37
  • Klaviyo Alum
  • 1393 replies
  • Answer
  • March 9, 2023

Hi @dev-flowers,

 

Would you be willing to share the actual API calls and responses that you are sending/receiving here? (with any sensitive info redacted - private API keys, IDs, etc.)

 

This will be helpful in diagnosing the issue, since it appears that what you’re describing is the correct way to accomplish this.

 

Best,

Brian


Forum|alt.badge.img+2
  • Author
  • Contributor I
  • 2 replies
  • March 15, 2023

I believe I found my issue. A bug on my side was causing the final PATCH request to not have a payload (data). Interestingly, it still returned a 200 response without one, which is why it was difficult to debug.

Here is the offending request without the payload:

{ 
  contentType: 'application/json',
  headers: 
  {
    accept: 'application/json',
    Authorization: 'Klaviyo-API-Key <REDACTED_API_KEY>',
    revision: '2023-02-22'
  },
  method: 'patch',
  validateHttpsCertificates: true,
  followRedirects: true,
  useIntranet: false,
  url: 'https://a.klaviyo.com/api/campaign-messages/<REDACTED_CAMPAIGN_MESSAGE_ID>/',
  payload: '',
}