Skip to main content
POST
/
campaigns
/
{campaign_id}
/
tasks
Add a task
curl --request POST \
  --url https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/tasks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "15s unboxing video",
  "instructions": "Open the package on camera and show your first reaction.",
  "platforms": [
    "tiktok",
    "instagram"
  ],
  "formats": [
    "feed_video"
  ],
  "caption": "Obsessed with my new glow ✨ @acmeskincare",
  "require_ad_disclosure": true,
  "tiktok_sound_url": "<string>",
  "instagram_sound_url": "<string>",
  "video_examples": [
    "<string>"
  ],
  "image_url": "<string>",
  "review_mode": "media_review",
  "autoreview_prompt": "The product must be clearly visible and mentioned by name.",
  "is_required": true,
  "max_posts_per_creator": 1,
  "display_order": 0
}
'
import requests

url = "https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/tasks"

payload = {
    "title": "15s unboxing video",
    "instructions": "Open the package on camera and show your first reaction.",
    "platforms": ["tiktok", "instagram"],
    "formats": ["feed_video"],
    "caption": "Obsessed with my new glow ✨ @acmeskincare",
    "require_ad_disclosure": True,
    "tiktok_sound_url": "<string>",
    "instagram_sound_url": "<string>",
    "video_examples": ["<string>"],
    "image_url": "<string>",
    "review_mode": "media_review",
    "autoreview_prompt": "The product must be clearly visible and mentioned by name.",
    "is_required": True,
    "max_posts_per_creator": 1,
    "display_order": 0
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({
    title: '15s unboxing video',
    instructions: 'Open the package on camera and show your first reaction.',
    platforms: ['tiktok', 'instagram'],
    formats: ['feed_video'],
    caption: 'Obsessed with my new glow ✨ @acmeskincare',
    require_ad_disclosure: true,
    tiktok_sound_url: '<string>',
    instagram_sound_url: '<string>',
    video_examples: ['<string>'],
    image_url: '<string>',
    review_mode: 'media_review',
    autoreview_prompt: 'The product must be clearly visible and mentioned by name.',
    is_required: true,
    max_posts_per_creator: 1,
    display_order: 0
  })
};

fetch('https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/tasks', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/tasks",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'title' => '15s unboxing video',
    'instructions' => 'Open the package on camera and show your first reaction.',
    'platforms' => [
        'tiktok',
        'instagram'
    ],
    'formats' => [
        'feed_video'
    ],
    'caption' => 'Obsessed with my new glow ✨ @acmeskincare',
    'require_ad_disclosure' => true,
    'tiktok_sound_url' => '<string>',
    'instagram_sound_url' => '<string>',
    'video_examples' => [
        '<string>'
    ],
    'image_url' => '<string>',
    'review_mode' => 'media_review',
    'autoreview_prompt' => 'The product must be clearly visible and mentioned by name.',
    'is_required' => true,
    'max_posts_per_creator' => 1,
    'display_order' => 0
  ]),
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>",
    "Content-Type: application/json"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/tasks"

	payload := strings.NewReader("{\n  \"title\": \"15s unboxing video\",\n  \"instructions\": \"Open the package on camera and show your first reaction.\",\n  \"platforms\": [\n    \"tiktok\",\n    \"instagram\"\n  ],\n  \"formats\": [\n    \"feed_video\"\n  ],\n  \"caption\": \"Obsessed with my new glow ✨ @acmeskincare\",\n  \"require_ad_disclosure\": true,\n  \"tiktok_sound_url\": \"<string>\",\n  \"instagram_sound_url\": \"<string>\",\n  \"video_examples\": [\n    \"<string>\"\n  ],\n  \"image_url\": \"<string>\",\n  \"review_mode\": \"media_review\",\n  \"autoreview_prompt\": \"The product must be clearly visible and mentioned by name.\",\n  \"is_required\": true,\n  \"max_posts_per_creator\": 1,\n  \"display_order\": 0\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/tasks")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"title\": \"15s unboxing video\",\n  \"instructions\": \"Open the package on camera and show your first reaction.\",\n  \"platforms\": [\n    \"tiktok\",\n    \"instagram\"\n  ],\n  \"formats\": [\n    \"feed_video\"\n  ],\n  \"caption\": \"Obsessed with my new glow ✨ @acmeskincare\",\n  \"require_ad_disclosure\": true,\n  \"tiktok_sound_url\": \"<string>\",\n  \"instagram_sound_url\": \"<string>\",\n  \"video_examples\": [\n    \"<string>\"\n  ],\n  \"image_url\": \"<string>\",\n  \"review_mode\": \"media_review\",\n  \"autoreview_prompt\": \"The product must be clearly visible and mentioned by name.\",\n  \"is_required\": true,\n  \"max_posts_per_creator\": 1,\n  \"display_order\": 0\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/tasks")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"title\": \"15s unboxing video\",\n  \"instructions\": \"Open the package on camera and show your first reaction.\",\n  \"platforms\": [\n    \"tiktok\",\n    \"instagram\"\n  ],\n  \"formats\": [\n    \"feed_video\"\n  ],\n  \"caption\": \"Obsessed with my new glow ✨ @acmeskincare\",\n  \"require_ad_disclosure\": true,\n  \"tiktok_sound_url\": \"<string>\",\n  \"instagram_sound_url\": \"<string>\",\n  \"video_examples\": [\n    \"<string>\"\n  ],\n  \"image_url\": \"<string>\",\n  \"review_mode\": \"media_review\",\n  \"autoreview_prompt\": \"The product must be clearly visible and mentioned by name.\",\n  \"is_required\": true,\n  \"max_posts_per_creator\": 1,\n  \"display_order\": 0\n}"

response = http.request(request)
puts response.read_body
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "15s unboxing video",
  "instructions": "Open the package on camera and show your first reaction.",
  "platforms": [
    "tiktok",
    "instagram"
  ],
  "formats": [
    "feed_video"
  ],
  "caption": "Obsessed with my new glow ✨ @acmeskincare",
  "require_ad_disclosure": true,
  "tiktok_sound_url": "<string>",
  "instagram_sound_url": "<string>",
  "video_examples": [
    "<string>"
  ],
  "image_url": "<string>",
  "review_mode": "media_review",
  "autoreview_prompt": "The product must be clearly visible and mentioned by name.",
  "is_required": true,
  "max_posts_per_creator": 1,
  "display_order": 0,
  "status": "active",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
{
  "error": 123,
  "message": "<string>",
  "code": "invalid_state_transition"
}
{
  "error": 123,
  "message": "<string>",
  "code": "invalid_state_transition"
}
{
  "error": 123,
  "message": "<string>",
  "code": "invalid_state_transition"
}
{
  "error": 123,
  "message": "<string>",
  "code": "invalid_state_transition"
}
{
  "error": 123,
  "message": "<string>",
  "code": "invalid_state_transition"
}
{
  "error": 123,
  "message": "<string>",
  "code": "invalid_state_transition"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Idempotency-Key
string

A unique key (max 255 characters) to safely retry the request. Repeating a request with the same key within 24 hours returns the original response with an Idempotent-Replay: true header. Reusing a key with a different body returns 409.

Maximum string length: 255

Path Parameters

campaign_id
string<uuid>
required

The campaign ID

Body

application/json
title
string
required
Example:

"15s unboxing video"

instructions
string
required
Example:

"Open the package on camera and show your first reaction."

platforms
enum<string>[]
required
Minimum array length: 1
Available options:
tiktok,
instagram,
youtube,
snapchat
Example:
["tiktok", "instagram"]
formats
enum<string>[]

The content format for a task

Available options:
feed_video,
feed_images,
feed_video_ugc,
feed_video_music,
feed_images_music,
story_video,
story_images
Example:
["feed_video"]
caption
string | null

Caption the creator must use when posting

Example:

"Obsessed with my new glow ✨ @acmeskincare"

require_ad_disclosure
boolean

Whether the post must carry the platform's paid-partnership / ad disclosure

Example:

true

tiktok_sound_url
string<uri> | null

TikTok sound the content must use

instagram_sound_url
string<uri> | null

Instagram sound the content must use

video_examples
string<uri>[]

URLs of example videos showing creators what to make

image_url
string<uri> | null

Cover image shown with the task

review_mode
enum<string>

media_review: you review each submission. autoreview: submissions are reviewed automatically — set autoreview_prompt to have the AI check content against it first.

Available options:
media_review,
autoreview
Example:

"media_review"

autoreview_prompt
string | null

What the AI should verify before approving a submission. Only used when review_mode is autoreview. Optional — with no prompt, autoreview approves every submission.

Example:

"The product must be clearly visible and mentioned by name."

is_required
boolean

Whether every creator must complete this task. Only authored directly when the campaign's settings.completion_mode is some_required; other modes derive it.

Example:

true

max_posts_per_creator
integer | null

Null means unlimited. Not applicable to Canvas campaigns, which cap videos weekly instead — always null there.

Example:

1

display_order
integer

Position of the task in the campaign's brief

Example:

0

Response

The created task

A deliverable creators complete for the campaign. Tasks on Canvas campaigns are readable but not writable via the API, and some fields (e.g. max_posts_per_creator) don't apply to them.

id
string<uuid>
title
string
Example:

"15s unboxing video"

instructions
string
Example:

"Open the package on camera and show your first reaction."

platforms
enum<string>[]
Available options:
tiktok,
instagram,
youtube,
snapchat
Example:
["tiktok", "instagram"]
formats
enum<string>[]

The content format for a task

Available options:
feed_video,
feed_images,
feed_video_ugc,
feed_video_music,
feed_images_music,
story_video,
story_images
Example:
["feed_video"]
caption
string | null

Caption the creator must use when posting

Example:

"Obsessed with my new glow ✨ @acmeskincare"

require_ad_disclosure
boolean

Whether the post must carry the platform's paid-partnership / ad disclosure

Example:

true

tiktok_sound_url
string<uri> | null

TikTok sound the content must use

instagram_sound_url
string<uri> | null

Instagram sound the content must use

video_examples
string<uri>[]

URLs of example videos showing creators what to make

image_url
string<uri> | null

Cover image shown with the task

review_mode
enum<string>

media_review: you review each submission. autoreview: submissions are reviewed automatically — set autoreview_prompt to have the AI check content against it first.

Available options:
media_review,
autoreview
Example:

"media_review"

autoreview_prompt
string | null

What the AI should verify before approving a submission. Only used when review_mode is autoreview. Optional — with no prompt, autoreview approves every submission.

Example:

"The product must be clearly visible and mentioned by name."

is_required
boolean

Whether every creator must complete this task. Only authored directly when the campaign's settings.completion_mode is some_required; other modes derive it.

Example:

true

max_posts_per_creator
integer | null

Null means unlimited. Not applicable to Canvas campaigns, which cap videos weekly instead — always null there.

Example:

1

display_order
integer

Position of the task in the campaign's brief

Example:

0

status
enum<string>

active tasks accept new work; archived tasks accept no new creators

Available options:
active,
archived
Example:

"active"

created_at
string<date-time>
updated_at
string<date-time>