Make-Integration
Baue mit HTTP-Modulen visuelle Posting-Automationen und Zeitpläne.
Schritt für Schritt
- Erstelle ein Szenario und wähle ein Trigger-Modul.
- Füge ein HTTP-Modul „Make a request“ hinzu: POST https://api.post-uno.com/v1/media/upload-url, dann ein zweites Modul, das die Bytes per PUT an die zurückgegebene uploadUrl sendet.
- Füge ein drittes Modul hinzu: POST https://api.post-uno.com/v1/posts mit dem s3Key aus Schritt 2.
- Füge in jedem Modul einen Authorization-Header mit Bearer YOUR_API_KEY hinzu.
- Gib einen rohen JSON-Body an und führe das Szenario einmal aus.
- Nutze captionOverrides, wenn eine Plattform eine eigene Formulierung braucht.
Beispiel-Payload
{
"profileId": "{{1.profileId}}",
"s3Key": "{{2.s3Key}}",
"postType": "video",
"caption": "{{1.caption}}",
"captionOverrides": { "x": "{{1.shortCaption}}" },
"platforms": ["tiktok", "youtube", "instagram"]
}profileId muss eine Profil-UUID sein, die deinem API-Key gehört — nimm sie aus dem profile_id eines beliebigen Kontos aus GET /v1/accounts. Ein Profil eines anderen Kontos, ein nicht existierendes Profil oder ein Wert, der keine UUID ist, liefern alle dasselbe 404 { "error": "Profile not found" }.