Reject a Creative
curl --request POST \
--url https://api.framen.com/vendor/{org_token}/cars/{car_id}/reject \
--header 'Content-Type: application/json' \
--data '
{
"rejection_reasons": [
"<string>"
],
"custom_message": "<string>"
}
'import requests
url = "https://api.framen.com/vendor/{org_token}/cars/{car_id}/reject"
payload = {
"rejection_reasons": ["<string>"],
"custom_message": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({rejection_reasons: ['<string>'], custom_message: '<string>'})
};
fetch('https://api.framen.com/vendor/{org_token}/cars/{car_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.framen.com/vendor/{org_token}/cars/{car_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([
'rejection_reasons' => [
'<string>'
],
'custom_message' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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.framen.com/vendor/{org_token}/cars/{car_id}/reject"
payload := strings.NewReader("{\n \"rejection_reasons\": [\n \"<string>\"\n ],\n \"custom_message\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.framen.com/vendor/{org_token}/cars/{car_id}/reject")
.header("Content-Type", "application/json")
.body("{\n \"rejection_reasons\": [\n \"<string>\"\n ],\n \"custom_message\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars/{car_id}/reject")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"rejection_reasons\": [\n \"<string>\"\n ],\n \"custom_message\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyReject a Creative
Reject a creative approval request (CAR) with one or more rejection reasons.
POST
/
vendor
/
{org_token}
/
cars
/
{car_id}
/
reject
Reject a Creative
curl --request POST \
--url https://api.framen.com/vendor/{org_token}/cars/{car_id}/reject \
--header 'Content-Type: application/json' \
--data '
{
"rejection_reasons": [
"<string>"
],
"custom_message": "<string>"
}
'import requests
url = "https://api.framen.com/vendor/{org_token}/cars/{car_id}/reject"
payload = {
"rejection_reasons": ["<string>"],
"custom_message": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({rejection_reasons: ['<string>'], custom_message: '<string>'})
};
fetch('https://api.framen.com/vendor/{org_token}/cars/{car_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.framen.com/vendor/{org_token}/cars/{car_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([
'rejection_reasons' => [
'<string>'
],
'custom_message' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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.framen.com/vendor/{org_token}/cars/{car_id}/reject"
payload := strings.NewReader("{\n \"rejection_reasons\": [\n \"<string>\"\n ],\n \"custom_message\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.framen.com/vendor/{org_token}/cars/{car_id}/reject")
.header("Content-Type", "application/json")
.body("{\n \"rejection_reasons\": [\n \"<string>\"\n ],\n \"custom_message\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars/{car_id}/reject")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"rejection_reasons\": [\n \"<string>\"\n ],\n \"custom_message\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyReject a Creative
Reject a creative approval request (CAR) with one or more rejection reasons. Once rejected, the advertiser is notified and can submit a revised creative.string
required
Your organization token (e.g.,
Org_4KmTqZnWpLx). Find it here.string
required
The unique identifier of the creative approval request (e.g.,
car_Xy7Kp2mN9qR4).string[]
required
Array of one or more rejection reason codes. Valid values:
ADVERTISER, INAPPROPRIATE, FILTER, CUSTOM.string
A custom rejection message. Required when
CUSTOM is included in rejection_reasons.Rejection Reasons
| Code | Description |
|---|---|
ADVERTISER | The advertiser is not approved to run on your network |
INAPPROPRIATE | The creative content is inappropriate for your venues |
FILTER | The creative does not meet your content filter criteria |
CUSTOM | Custom reason — requires a custom_message |
Example Request
curl -X POST "https://api.framen.com/vendor/Org_4KmTqZnWpLx/cars/car_Xy7Kp2mN9qR4/reject"
-H "Content-Type: application/json" \
-d '{
"rejection_reasons": ["INAPPROPRIATE", "CUSTOM"],
"custom_message": "Creative contains content not suitable for family-oriented venues"
}'
Example Response
{
"id": "car_Xy7Kp2mN9qR4",
"status": "rejected",
"advertiser_name": "Acme Corporation",
"campaign_name": "Summer Sale 2026",
"rejection_reasons": ["INAPPROPRIATE", "CUSTOM"],
"custom_message": "Creative contains content not suitable for family-oriented venues",
"created_at": "2026-03-28T14:30:00Z",
"updated_at": "2026-03-28T16:20:15Z"
}
Error Responses
| Status | Error | Description |
|---|---|---|
| 400 | Bad Request | CAR is already approved or rejected; cannot reject an already-decided creative. Also returned if rejection_reasons is missing or invalid. |
| 401 | Unauthorized | Invalid or missing org_token |
| 404 | Not Found | CAR not found; invalid car_id or organization does not own this CAR |
| 422 | Unprocessable Entity | CUSTOM is in rejection_reasons but custom_message is missing or empty |
| 429 | Too Many Requests | Rate limit exceeded; retry after delay |
| 500 | Internal Server Error | Server error; please try again later |
Last modified on April 17, 2026
⌘I