Hey 👋
Working through the Reply API for a 100+ sequence client buildout. One gap I can’t crack:
✅ Working: PDF on a step at creation time via POST /v2/campaigns with steps[].templates[].emailTemplateId (template has attachmentIds set). UI shows it, sends deliver with the PDF attached.
❌ What I need but can’t find: a way to add a PDF to a step in a sequence that already exists.
Things I’ve already tested and confirmed don’t work:
• PATCH /v2/campaigns/{id}/steps/{stepId} with attachmentsIds: [id] — accepted, silently persists []
• PATCH setting emailTemplateId post-creation — pulls subject + body from the template, but not the attachment
• All v3 step variant attachment fields (attachmentIds, attachments, fileIds, templateAttachmentIds) — silently dropped
• save-as-template → create-from-template — strips attachments on clone
• Every plausible hidden endpoint I could think of (/v3/sequences/{id}/steps/{step_id}/attachments and variants) — 404
Has anyone found a working API path — documented, undocumented, or via a workflow tool — to attach a file to a step in an already-created sequence? Or is rebuild-from-scratch the only option today?
Cheers 🙏