We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4bb54f commit 97c6d7eCopy full SHA for 97c6d7e
docs/web-apis/ordering-api.mdx
@@ -113,6 +113,28 @@ The Order Quote API lets you retrieve pricing quotes for PCB orders. Quotes incl
113
114
### Endpoint
115
116
+#### Create an Order Quote
117
+`POST /order_quotes/create`
118
+
119
+Creates a new order quote for a PCB package release. Currently only the `jlcpcb` vendor is supported.
120
121
+Request body:
122
123
+```json
124
+{
125
+ "package_release_id": "string (UUID)",
126
+ "vendor_name": "jlcpcb"
127
+}
128
+```
129
130
+Response example:
131
132
133
134
+ "order_quote_id": "string (UUID)"
135
136
137
138
#### Get an Order Quote
139
`GET /order_quotes/get?order_quote_id={uuid}` or `POST /order_quotes/get`
140
0 commit comments