Create a new RfQ either for an existing or a new customer.
Security
BearerAuth
One of:
If creating RfQ for an existing customer provide customer id here
This RfQs currency
Enum:"EUR""USD""AUD""BGN""BRL""CAD""CHF""CNY""CZK""DKK"
Enum:"Auto""Medical""Defense""Aero""Rail""Industrial""Construction""Consumer""Other"
If present, the RfQ is created from an existing assembly identified by this IPN value and revision.
POST
curl -i -X POST \
https://api.luminovo.com/rfqs \
-H 'Accept: application/api.luminovo.rfq-v1+json' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"customer": {
"data": "808ac6e4-93ed-4040-85a5-6c71a2444e90",
"type": "ExistingCustomer"
},
"name": "string",
"ems_internal_number": "string",
"contributors": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
],
"due_date": "2019-08-24",
"currency": "EUR",
"volume_estimate": null,
"industry": "Auto",
"notes": "string",
"internal_notes": "string",
"source_assembly_ipn_value": "string",
"source_assembly_ipn_revision": "string",
"assembly_type": "Box"
}'RfQ created.
The RfQ/project ID. This is the same identifier used by both /rfqs and /projects endpoints.
Enum:"RequestInDraft""QuotationInProgress""QuotationAvailable""NoQuotation""NoOrder""OrderPlaced""OrderConfirmed""PaymentFailed""OrderInProcurement""OrderInProduction"
Enum:"Auto""Medical""Defense""Aero""Rail""Industrial""Construction""Consumer""Other"
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "customer": "0ac6320b-fa4d-4235-8d23-413a2b863bad", "name": "string", "ems_internal_number": "string", "creation_date": "2019-08-24T14:15:22Z", "due_date": "2019-08-24", "status": "RequestInDraft", "sourcing_scenarios": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ], "design_items_count": 0, "assemblies_count": 0, "created_by": "ee824cad-d7a6-4f48-87dc-e8461a9201c4", "currency": "EUR", "is_archived": true, "industry": "Auto", "notes": "string", "internal_notes": "string" }