GET
Auth Required
Get Failed Order
Get detailed information about a specific failed order.
https://hoodsly-moc-api.wppool.dev/api/v1/failed-orders/{id}
Response
200 OK
{
"id": "fo-001-uuid",
"failed_order_id": "FO-001",
"source": "wordpress",
"validation_status": "failed",
"error_category": "required_field",
"priority": "high",
"requires_manual_review": true,
"retry_count": 2,
"order_data": {
"billing": {
"first_name": "John",
"last_name": "",
"email": "invalid-email",
"phone": "(555) 123-4567",
"address_1": "123 Main St",
"city": "New York",
"state": "NY",
"postcode": "10001",
"country": "US"
},
"shipping": {
"first_name": "John",
"last_name": "",
"address_1": "123 Main St",
"city": "New York",
"state": "NY",
"postcode": "10001",
"country": "US"
},
"products": [
{
"product_id": "PROD-001",
"name": "Ventilation Hood",
"sku": "VH-001",
"quantity": 2,
"price": 700.00
}
]
},
"errors": [
{"field": "billing.last_name", "message": "Last name is required", "code": "REQUIRED_FIELD"},
{"field": "billing.email", "message": "Invalid email format", "code": "INVALID_FORMAT"}
],
"created_at": "2026-01-05T10:00:00Z",
"updated_at": "2026-01-06T09:00:00Z"
}
Request
GET
/api/v1/status
Response