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

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

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

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

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

fetch('https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/submissions', 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",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
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"

req, _ := http.NewRequest("GET", 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.get("https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/submissions")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

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

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

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

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "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"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}
{
"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

Query Parameters

status
enum<string>

Filter by review status 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"

creator_id
string

Only submissions from this creator

task_id
string<uuid>

Only submissions for this task

submitted_after
string<date-time>

Only submissions submitted at or after this time (ISO 8601)

submitted_before
string<date-time>

Only submissions submitted before this time (ISO 8601)

limit
integer
default:25

Number of items to return per page

Required range: 1 <= x <= 100
starting_after
string

Opaque pagination cursor from a previous response's next_cursor

Response

A page of submissions

data
object[]
has_more
boolean
next_cursor
string | null