Review a delivered order
curl --request POST \
--url https://sendpaperplane.com/v1/reviews \
--header 'Content-Type: application/json' \
--data '
{
"order_id": "ord_1a2b3c4d5e6f7a8b",
"stars": 5
}
'import requests
url = "https://sendpaperplane.com/v1/reviews"
payload = {
"order_id": "ord_1a2b3c4d5e6f7a8b",
"stars": 5
}
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({order_id: 'ord_1a2b3c4d5e6f7a8b', stars: 5})
};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({order_id: 'ord_1a2b3c4d5e6f7a8b', stars: 5})
};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sendpaperplane.com/v1/reviews"
payload := strings.NewReader("{\n \"order_id\": \"ord_1a2b3c4d5e6f7a8b\",\n \"stars\": 5\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))
}require 'uri'
require 'net/http'
url = URI("https://sendpaperplane.com/v1/reviews")
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 \"order_id\": \"ord_1a2b3c4d5e6f7a8b\",\n \"stars\": 5\n}"
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sendpaperplane.com/v1/reviews",
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([
'order_id' => 'ord_1a2b3c4d5e6f7a8b',
'stars' => 5
]),
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;
}HttpResponse<String> response = Unirest.post("https://sendpaperplane.com/v1/reviews")
.header("Content-Type", "application/json")
.body("{\n \"order_id\": \"ord_1a2b3c4d5e6f7a8b\",\n \"stars\": 5\n}")
.asString();{
"status": "ok",
"review": {
"id": "rev_a1b2c3d4",
"stars": 5,
"comment": "Sent a certified letter without leaving my desk. Arrived in 3 days.",
"name": "Jordan R.",
"city": "Springfield",
"state": "IL",
"category": "certified",
"created_at": "2026-08-23T12:00:00.000Z"
}
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}Review a delivered order
One review per order. The reviewer identity (name, city, state) is derived server-side from the order return address — it is never accepted from the caller. Requires the capability_token returned by the order creation response: publishing attribution is a public action, so the order id alone is not enough.
POST
/
v1
/
reviews
Review a delivered order
curl --request POST \
--url https://sendpaperplane.com/v1/reviews \
--header 'Content-Type: application/json' \
--data '
{
"order_id": "ord_1a2b3c4d5e6f7a8b",
"stars": 5
}
'import requests
url = "https://sendpaperplane.com/v1/reviews"
payload = {
"order_id": "ord_1a2b3c4d5e6f7a8b",
"stars": 5
}
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({order_id: 'ord_1a2b3c4d5e6f7a8b', stars: 5})
};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({order_id: 'ord_1a2b3c4d5e6f7a8b', stars: 5})
};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sendpaperplane.com/v1/reviews"
payload := strings.NewReader("{\n \"order_id\": \"ord_1a2b3c4d5e6f7a8b\",\n \"stars\": 5\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))
}require 'uri'
require 'net/http'
url = URI("https://sendpaperplane.com/v1/reviews")
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 \"order_id\": \"ord_1a2b3c4d5e6f7a8b\",\n \"stars\": 5\n}"
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sendpaperplane.com/v1/reviews",
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([
'order_id' => 'ord_1a2b3c4d5e6f7a8b',
'stars' => 5
]),
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;
}HttpResponse<String> response = Unirest.post("https://sendpaperplane.com/v1/reviews")
.header("Content-Type", "application/json")
.body("{\n \"order_id\": \"ord_1a2b3c4d5e6f7a8b\",\n \"stars\": 5\n}")
.asString();{
"status": "ok",
"review": {
"id": "rev_a1b2c3d4",
"stars": 5,
"comment": "Sent a certified letter without leaving my desk. Arrived in 3 days.",
"name": "Jordan R.",
"city": "Springfield",
"state": "IL",
"category": "certified",
"created_at": "2026-08-23T12:00:00.000Z"
}
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}{
"status": "failed",
"code": "<string>",
"reason": "<string>",
"next": [
"<string>"
]
}Body
application/json
Response
The recorded review
Allowed value:
"ok"Hide child attributes
Hide child attributes
Required range:
-9007199254740991 <= x <= 9007199254740991Last modified on September 17, 2026
Was this page helpful?