v1

latestOpenAPI 3.0.02026-07-2417129274.8 KB
Automation Endpoints

Order Fulfillment

This endpoint informs Riskified that fulfillment information has been generated for a specific order, encompassing both successful and unsuccessful attempts. It can be called multiple times if there are multiple shipments on a single order. This functionality is essential for the automated submission of chargebacks, AKA CGI, and creation compelling evidence documentation for chargeback disputes. In its absence, merchants are required to manually upload proof of delivery via the Control Center.

post/api/fulfill

Headers

x-riskified-shop-domainstring required
Example:merchant.example.com

The merchant shop domain registered with Riskified.

x-riskified-hmac-sha256string required
Example:b1946ac92492d2347c6235b4d2611184

Verification hash for the Request. Generated by performing an SHA256 encryption on the request's POST body and calculating the HMAC hash of the result using your Riskified authentication token. Please use UTF8 encoding.

content_type'application/json' required

As payloads are sent to Riskified in JSON format, value should be: application/json

accept'application/vnd.riskified.com; version=2' required

Specify the version of the API to target. For example, to target the latest version of the API, use the following: application/vnd.riskified.com; version=2

Request body

Example request

{
  "order": {
    "fulfillments": [
      {
        "line_items": [
          {
            "price": 20,
            "quantity": 1,
            "title": "Tempered Glass Guard for Apple iPhone X",
            "product_id": "ABC123",
            "category": "On Sale",
            "brand": "Complete Cover",
            "product_type": "physical",
            "requires_shipping": true,
            "sku": "sj18fn402",
            "sub_category": "Super Sale",
            "condition": "new",
            "seller": null,
            "delivered_at": "2025-12-01T10:00:00Z",
            "delivered_to": "shipping_address",
            "drop_point": null,
            "size": "Small",
            "registry_type": null,
            "shipping_address_id": "addr_ship_01"
          }
        ]
      }
    ]
  }
}

Response

Successful operation

Example response

{
  "order": {
    "id": "53953819"
  }
}