EUDR - Customers - Origin Requests
Bulk request origins for products
Send origin requests for products to suppliers. Suppliers are notified by in-app notification and email. Additional email CCs and a comment can be provided in the payload. Every supplier must have at least one contact to be notified. To manage and fetch contacts, use the connection-contact endpoints.
Required permission: access_public_products
post/public/v2/eudr/customers/origin-requests
Request body
Example request
{
"items": {
"productId": 123,
"endDate": "2025-09-30",
"connectionContactIds": [
1,
2,
3
],
"comment": "Please process urgently.",
"references": {
"reference": "PO-2025-001",
"referenceType": "PurchaseOrder"
}
}
}Response
Origin requests processed. Check succeeded and failed for per-item results.
Example response
{
"succeeded": [
{
"id": 1001,
"productId": 123,
"status": "[\"Requested\",\"Answered\"]",
"references": {
"reference": "PO-2025-001",
"referenceType": "PurchaseOrder"
}
}
],
"failed": [
{
"value": {
"productId": 123,
"endDate": "2025-09-30",
"connectionContactIds": [
1,
2,
3
],
"comment": "Please process urgently.",
"references": {
"reference": "PO-2025-001",
"referenceType": "PurchaseOrder"
}
}
}
]
}