Skip to main content
POST
/
campaigns
/
{campaign_id}
/
submissions
/
{submission_id}
/
reject
Reject a submission
curl --request POST \
  --url https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/submissions/{submission_id}/reject \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "feedback": "Great energy! Please reshoot with the product visible in the first 3 seconds."
}
'
import requests

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

payload = { "feedback": "Great energy! Please reshoot with the product visible in the first 3 seconds." }
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({
feedback: 'Great energy! Please reshoot with the product visible in the first 3 seconds.'
})
};

fetch('https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/submissions/{submission_id}/reject', 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}/submissions/{submission_id}/reject",
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([
'feedback' => 'Great energy! Please reshoot with the product visible in the first 3 seconds.'
]),
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}/submissions/{submission_id}/reject"

payload := strings.NewReader("{\n \"feedback\": \"Great energy! Please reshoot with the product visible in the first 3 seconds.\"\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}/submissions/{submission_id}/reject")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"feedback\": \"Great energy! Please reshoot with the product visible in the first 3 seconds.\"\n}")
.asString();
require 'uri'
require 'net/http'

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

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 \"feedback\": \"Great energy! Please reshoot with the product visible in the first 3 seconds.\"\n}"

response = http.request(request)
puts response.read_body
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "creator_id": "cr_8f14e45fceea",
  "creator_username": "somecreator",
  "task_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "in_review",
  "media_type": "video",
  "media_url": "<string>",
  "thumbnail_url": "<string>",
  "revision_count": 1,
  "feedback": "<string>",
  "failure_reason": "<string>",
  "submitted_at": "2023-11-07T05:31:56Z",
  "reviewed_at": "2023-11-07T05:31:56Z",
  "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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

campaign_id
string<uuid>
required

The campaign ID

submission_id
string<uuid>
required

The submission ID

Body

application/json

Optional context for a rejection

feedback
string

Feedback delivered to the creator, telling them what to fix before resubmitting. If omitted, the creator receives a generic 'changes requested' note.

Example:

"Great energy! Please reshoot with the product visible in the first 3 seconds."

Response

The rejected submission

Content a creator submitted for review before posting

id
string<uuid>
creator_id
string
Example:

"cr_8f14e45fceea"

creator_username
string
Example:

"somecreator"

task_id
string<uuid>
status
enum<string>

in_review: waiting on your decision (a rejected submission returns here when the creator submits a revision). approved: cleared to post. rejected: you sent it back for changes. failed: automatic validation or processing failed — see failure_reason. post_deleted: the content was posted and later taken down.

Available options:
in_review,
approved,
rejected,
failed,
post_deleted
Example:

"in_review"

media_type
enum<string>
Available options:
video,
carousel
Example:

"video"

media_url
string<uri> | null

URL of the submitted video, or the first image of a carousel

thumbnail_url
string<uri> | null
revision_count
integer

How many times the creator has re-submitted this content after a rejection. 0 for an initial submission that has never been sent back.

Example:

1

feedback
string | null

The most recent rejection feedback sent to the creator, if any

failure_reason
string | null

When status is failed, a short explanation of what went wrong (e.g. media could not be processed, or the required post could not be verified). Null for every other status.

submitted_at
string<date-time> | null
reviewed_at
string<date-time> | null
created_at
string<date-time>
updated_at
string<date-time>