Trigger an asynchronous fetch of fresh offers from the configured external supplier APIs (Octopart, TrustedParts, distributor APIs, ...) for the given off-the-shelf parts.
This is asynchronous: the endpoint responds 202 Accepted and the freshly fetched offers are written in the background. Poll the offer-lookup endpoints afterwards to read them.
Security
BearerAuth
POST
curl -i -X POST \
https://api.luminovo.com/offers/refresh \
-H 'Accept: application/api.luminovo.offer-v1+json' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"parts": [
"OffTheShelf:a1b2c3d4-5678-90ab-cdef-123456789012"
]
}'