User
Create Appeal
Create a strike appeal for reviewer workflow and downstream action updates.
POST
/
api
/
user
/
strike
/
appeal
cURL
curl --request POST \
--url 'https://eu.whitecircle.com/api/user/strike/appeal' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'whitecircle-version: 2025-12-01' \
--data '{"reason":"This strike was applied by mistake.","strike_id":"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4","session_id":"session-456"}'import requests
url = "https://eu.whitecircle.com/api/user/strike/appeal"
payload = {
"reason": "This strike was applied by mistake.",
"strike_id": "4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4",
"session_id": "session-456"
}
headers = {
"whitecircle-version": "<whitecircle-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'whitecircle-version': '<whitecircle-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
reason: 'This strike was applied by mistake.',
strike_id: '4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4',
session_id: 'session-456'
})
};
fetch('https://eu.whitecircle.com/api/user/strike/appeal', 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://eu.whitecircle.com/api/user/strike/appeal",
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([
'reason' => 'This strike was applied by mistake.',
'strike_id' => '4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4',
'session_id' => 'session-456'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"whitecircle-version: <whitecircle-version>"
],
]);
$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://eu.whitecircle.com/api/user/strike/appeal"
payload := strings.NewReader("{\n \"reason\": \"This strike was applied by mistake.\",\n \"strike_id\": \"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4\",\n \"session_id\": \"session-456\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("whitecircle-version", "<whitecircle-version>")
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://eu.whitecircle.com/api/user/strike/appeal")
.header("whitecircle-version", "<whitecircle-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"reason\": \"This strike was applied by mistake.\",\n \"strike_id\": \"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4\",\n \"session_id\": \"session-456\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://eu.whitecircle.com/api/user/strike/appeal")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["whitecircle-version"] = '<whitecircle-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"reason\": \"This strike was applied by mistake.\",\n \"strike_id\": \"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4\",\n \"session_id\": \"session-456\"\n}"
response = http.request(request)
puts response.read_body{
"appeal_id": "8f3a6f48-6f63-4ac0-b3ec-6beefca3e8c2",
"status": "appeal.in_review"
}Use this endpoint when a user submits an appeal for a strike.
For the complete appeals lifecycle and operational guidance, see Strike System.
Authorizations
API Key required. Format: Bearer wc-your-api-key
Headers
API Version
⌘I
cURL
curl --request POST \
--url 'https://eu.whitecircle.com/api/user/strike/appeal' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'whitecircle-version: 2025-12-01' \
--data '{"reason":"This strike was applied by mistake.","strike_id":"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4","session_id":"session-456"}'import requests
url = "https://eu.whitecircle.com/api/user/strike/appeal"
payload = {
"reason": "This strike was applied by mistake.",
"strike_id": "4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4",
"session_id": "session-456"
}
headers = {
"whitecircle-version": "<whitecircle-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'whitecircle-version': '<whitecircle-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
reason: 'This strike was applied by mistake.',
strike_id: '4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4',
session_id: 'session-456'
})
};
fetch('https://eu.whitecircle.com/api/user/strike/appeal', 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://eu.whitecircle.com/api/user/strike/appeal",
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([
'reason' => 'This strike was applied by mistake.',
'strike_id' => '4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4',
'session_id' => 'session-456'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"whitecircle-version: <whitecircle-version>"
],
]);
$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://eu.whitecircle.com/api/user/strike/appeal"
payload := strings.NewReader("{\n \"reason\": \"This strike was applied by mistake.\",\n \"strike_id\": \"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4\",\n \"session_id\": \"session-456\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("whitecircle-version", "<whitecircle-version>")
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://eu.whitecircle.com/api/user/strike/appeal")
.header("whitecircle-version", "<whitecircle-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"reason\": \"This strike was applied by mistake.\",\n \"strike_id\": \"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4\",\n \"session_id\": \"session-456\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://eu.whitecircle.com/api/user/strike/appeal")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["whitecircle-version"] = '<whitecircle-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"reason\": \"This strike was applied by mistake.\",\n \"strike_id\": \"4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4\",\n \"session_id\": \"session-456\"\n}"
response = http.request(request)
puts response.read_body{
"appeal_id": "8f3a6f48-6f63-4ac0-b3ec-6beefca3e8c2",
"status": "appeal.in_review"
}