Skip to main content
POST
/
campaigns
/
{campaign_id}
/
creators
/
{creator_id}
/
reject
Reject a creator
curl --request POST \
  --url https://api.launchpoint.sh/2026-07/campaigns/{campaign_id}/creators/{creator_id}/reject \
  --header 'Authorization: Bearer <token>'
import requests

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

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}/creators/{creator_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}/creators/{creator_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_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}/creators/{creator_id}/reject"

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

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

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
{
  "creator_id": "cr_8f14e45fceea",
  "username": "somecreator",
  "status": "approved",
  "applied_at": "2023-11-07T05:31:56Z",
  "decided_at": "2023-11-07T05:31:56Z",
  "content": {
    "submitted": 4,
    "in_review": 1,
    "approved": 3,
    "rejected": 0
  },
  "posts": 3,
  "metrics": {
    "views": 32000,
    "likes": 2100,
    "comments": 90,
    "shares": 25,
    "saves": 40
  },
  "spend_cents": 45000
}
{
"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

creator_id
string
required

The creator ID

Response

The rejected creator

A creator's participation in the campaign: application status, content pipeline, performance, and spend

creator_id
string
Example:

"cr_8f14e45fceea"

username
string
Example:

"somecreator"

status
enum<string>

The creator's application status on the campaign

Available options:
applied,
approved,
rejected
Example:

"approved"

applied_at
string<date-time>
decided_at
string<date-time> | null

When the application was approved or rejected

content
object

The creator's content pipeline on this campaign

posts
integer

Number of live posts

Example:

3

metrics
object

Engagement totals across posts

spend_cents
integer

Total paid to this creator on this campaign, in cents

Example:

45000