- BOMs
- Gets Boms that user has read access toGET
- Creates a Bom using Cofactr DataPOST
- Creates a Bom using raw bomline data and performs searches to convert into Cofactr DataPOST
- Gets a BomGET
- Upsert BOM AsyncPUT
- Updates a BomPATCH
- Deletes a Bom if still unapproved. Archives a bom if approved.DELETE
- Approves an unapproved Bom.POST
- Gets Bom Lines on a Bom.GET
- Creates a new bomline on a Bom using Cofactr data. If a bomline with the provided part exists it will sum the quants instead of duplicating lines.POST
- Gets a BomLineGET
- Updates a BomLinePATCH
- Removes a Bomline from a Bom.DELETE
- Attempts to create a new Bomline using raw data and performs searches to convert into Cofactr Data. If a Bomline with the same part and refdes exists it will sum the quants instead of duplicating lines.POST
- Programs
- Gets Programs
- Creates a Program
- Gets a Program
- Updates a Program
- Deletes a Program
- Gets Program Availabilities
- Gets Program Availabilities Async
- Gets Program Reference Pricing
- Get Programs Lines
- Get Programs Line
- Update Programs Line
- Delete Programs Line
- Create Programs Lines
- Get Program Part Overrides
- Create Program Part Overrides
- Get Program Part Override
- Update Program Part Override
- Delete Program Part Override
- Account
- Reporting
- Email
- Auth
- Async Jobs
- Stock Documents
- Suppliers
- Parts
- Purchases
- Get Purchase OrderGET
- Create Purchase OrderPOST
- Update Purchase OrderPATCH
- Delete Purchase OrderDELETE
- Get Purchase LinesGET
- Get Purchase LineGET
- Create Purchase LinePOST
- Update Many Purchase LinesPATCH
- Delete Purchase LineDELETE
- Get NoPart Purchase LinesGET
- Create NoPart Purchase LinePOST
- Update Many NoPart Purchase LinesPATCH
- Delete NoPart Purchase LineDELETE
- Create Purchase EventPOST
- Update Supplier BillPATCH
- Update Supplier Bill LinePATCH
- Create Supplier BillPOST
- Create Supplier Bill LinePOST
- Teams
- Custom Properties
- Stock Lots
- Tags
- Rfqs
- RfqLines
- SupplierQuote
- SupplierQuoteLines
Create NoPart Purchase Line
POST
/v1/purchase_orders/{purchase_id}/no_part_lines/
Request
Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Path Params
purchase_id
string
required
Query Params
blended
string
optional
Header Params
x-org-id
string
optional
Body Params application/json
synced_from_integration
boolean
Synced from integration
integration_source_name
string
Integration source name
integration_record_id
string
Integration record id
synced_from_integration_at
string <date-time>
Synced from integration at
metadata
object
Metadata
notes
string
Notes
>= 1 characters
description
string
Description
>= 1 characters
quant
string <decimal>
Quant
unit_price
string <decimal>
Unit price
line_total
string <decimal>
Line total
Example
{
"quant": 4,
"description": "packing",
"integration_source_name": "quickbooks",
"integration_record_id": "123456",
"metadata": {
"tt": "aaaa"
},
"unit_price": 3,
"line_total": 4
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/purchase_orders//no_part_lines/?blended' \
--header 'x-org-id;' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw '{
"quant": 4,
"description": "packing",
"integration_source_name": "quickbooks",
"integration_record_id": "123456",
"metadata": {
"tt": "aaaa"
},
"unit_price": 3,
"line_total": 4
}'
Responses
🟢200Success
application/json
Body
array of:
id
string <uuid>
Id
synced_from_integration
boolean
Synced from integration
synced_from_integration_at
string <date-time>
Synced from integration at
integration_source_name
string
Integration source name
>= 1 characters
integration_record_id
string
Integration record id
>= 1 characters
metadata
object
Metadata
notes
string
Notes
description
string
Description
quant
string <decimal>
Quant
unit_price
string <decimal>
Unit price
line_total
string <decimal>
Line total
purchase_order_id
string
Purchase order id
Example
[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"synced_from_integration": true,
"synced_from_integration_at": "2019-08-24T14:15:22Z",
"integration_source_name": "string",
"integration_record_id": "string",
"metadata": {},
"notes": "string",
"description": "string",
"quant": "string",
"unit_price": "string",
"line_total": "string",
"purchase_order_id": "string"
}
]
Modified at 2025-02-06 23:27:29