Intake

AdminUpdated Sep 24, 2026
POSThttps://shippified.net/api/webhooks/discord/{handle}/{slug}
Post a Discord-format checkout message to a bot.

Point a monitor's Discord webhook at this URL. No auth header — the URL itself identifies the workspace and bot. The body is the standard Discord webhook message (`content`, `embeds`, …). It's parsed with the bot's template, turned into an order (or merged into an existing one), logged in the bot's activity log, and then re-posted to the bot's output webhook (or the workspace fallback webhook) if one is set. Anything that doesn't produce an order is still answered with **202**, not an error, so Discord doesn't retry. Check the body (`ignored` / `rejected`) or `GET /api/bots/{id}/logs` to see what happened. Rate limited to 60 requests/min per source IP and 60/min per bot.

Parameters
NameInTypeRequiredDescription
handlepathstringyesYour workspace's webhook handle (`user.webhookHandle`). Older URLs that use the raw user id still work.
slugpathstringyesThe bot's slug.
Request body application/json
{
  "username": "string",
  "avatar_url": "string",
  "content": "string",
  "embeds": [
    {}
  ]
}
Responses
202 Accepted. One of three bodies: an order was created or merged (`order`, `forward`, `merged`); the payload didn't produce an order (`{ ignored: true }`); or the workspace hit its free-plan monthly cap (`rejected: true`).
{}
401 Unknown webhook handle.
{
  "error": "string"
}
404 No bot with this slug in the workspace.
{
  "error": "string"
}
413 Body larger than 2 MiB.
429 Rate limit exceeded (60/min per IP, or 60/min for this bot). See `Retry-After`.
{
  "error": "string"
}
Code samples
cURL
curl -X POST "https://shippified.net/api/webhooks/discord/{handle}/{slug}" \
  -H "Content-Type: application/json" \
  -d '{"username":"string","avatar_url":"string","content":"string","embeds":[{}]}'
TypeScript
const res = await fetch('https://shippified.net/api/webhooks/discord/{handle}/{slug}', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"username":"string","avatar_url":"string","content":"string","embeds":[{}]}),
});
const data = await res.json();
Python
import requests

res = requests.request(
    "POST",
    "https://shippified.net/api/webhooks/discord/{handle}/{slug}",
    headers={
    "Content-Type": "application/json",
    },
    json={"username": "string", "avatar_url": "string", "content": "string", "embeds": [{}]},
)
data = res.json()
Go
package main

import (
	"fmt"
	"io"
	"net/http"
	"strings"
)

func main() {
	req, _ := http.NewRequest("POST", "https://shippified.net/api/webhooks/discord/{handle}/{slug}", strings.NewReader(`{"username":"string","avatar_url":"string","content":"string","embeds":[{}]}`))
	req.Header.Set("Content-Type", "application/json")
	res, _ := http.DefaultClient.Do(req)
	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)
	fmt.Println(string(body))
}
PHP
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://shippified.net/api/webhooks/discord/{handle}/{slug}');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"username":"string","avatar_url":"string","content":"string","embeds":[{}]}');
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Ruby
require 'net/http'
require 'uri'

uri = URI('https://shippified.net/api/webhooks/discord/{handle}/{slug}')
req = Net::HTTP::Post.new(uri)
req['Content-Type'] = 'application/json'
req.body = '{"username":"string","avatar_url":"string","content":"string","embeds":[{}]}'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
  http.request(req)
end
puts res.body
Java
import java.net.URI;
import java.net.http.*;
import java.net.http.HttpRequest.BodyPublishers;

HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("https://shippified.net/api/webhooks/discord/{handle}/{slug}"))
    .header("Content-Type", "application/json")
    .method("POST", BodyPublishers.ofString("{\"username\":\"string\",\"avatar_url\":\"string\",\"content\":\"string\",\"embeds\":[{}]}"))
    .build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
Was this page helpful?