ResourcesInvoices

Retry invoice fulfillment

Reset retryable fulfillment outbox effects for a paid or partially fulfilled invoice.

Repeated requests reset the existing retryable effects rather than creating duplicate effects. An optional validated email can replace the delivery recipient metadata.

POST
/v2/invoices/{invoice}/fulfillment-retries

Authorization

bearerAuth storeAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

X-STORE<token>

Select the SellApp store for this API request.

In: header

Path Parameters

invoice*integer

The invoice path parameter.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://sell.app/api/v2/invoices/0/fulfillment-retries" \  -H "Content-Type: application/json" \  -d '{}'
{
  "data": {
    "effects_reset": 0
  }
}
{
  "message": "Unauthenticated."
}
{
  "message": "This action is unauthorized."
}
{
  "message": "Rule not found."
}
{
  "message": "The given data was invalid.",
  "errors": {
    "data": [
      "The data field is required."
    ]
  }
}