Skip to main content
POST
/
campaigns
/
{campaign_id}
/
submissions
/
{submission_id}
/
approve
Approve a submission
curl --request POST \
  --url https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/submissions/{submission_id}/approve \
  --header 'Authorization: Bearer <token>'
import requests

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

headers = {"Authorization": "Bearer <token>"}

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

print(response.text)
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/submissions/{submission_id}/approve', 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}/approve",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

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

curl_close($curl);

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

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

func main() {

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

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

req.Header.Add("Authorization", "Bearer <token>")

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}/approve")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

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

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

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'

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

Response

The approved 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>