- 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 ProgramsGET
- Creates a ProgramPOST
- Gets a ProgramGET
- Updates a ProgramPATCH
- Deletes a ProgramDELETE
- Gets Program AvailabilitiesGET
- Gets Program Availabilities AsyncGET
- Gets Program Reference PricingGET
- Get Programs LinesGET
- Get Programs LineGET
- Update Programs LinePATCH
- Delete Programs LineDELETE
- Create Programs LinesPOST
- Get Program Part OverridesGET
- Create Program Part OverridesPOST
- Get Program Part OverrideGET
- Update Program Part OverridePATCH
- Delete Program Part OverrideDELETE
- Account
- Reporting
- Email
- Auth
- Async Jobs
- Stock Documents
- Suppliers
- Parts
- Purchases
- Get Purchase Order
- Create Purchase Order
- Update Purchase Order
- Delete Purchase Order
- Get Purchase Lines
- Get Purchase Line
- Create Purchase Line
- Update Many Purchase Lines
- Delete Purchase Line
- Get NoPart Purchase Lines
- Create NoPart Purchase Line
- Update Many NoPart Purchase Lines
- Delete NoPart Purchase Line
- Create Purchase Event
- Update Supplier Bill
- Update Supplier Bill Line
- Create Supplier Bill
- Create Supplier Bill Line
- Teams
- Custom Properties
- Stock Lots
- Tags
- Rfqs
- RfqLines
- SupplierQuote
- SupplierQuoteLines
Async Create Parts
POST
/integrations/async_sync_parts/
Request
Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Body Params application/json
parts
array[object (CreateSyncPart) {16}]
required
mpn
string
Mpn
>= 1 characters<= 255 characters
alternative_mpns
array[string]
optional
manufacturer_name
string
Manufacturer name
>= 1 characters<= 255 characters
custom_id
string
Custom id
>= 1 characters<= 255 characters
manufacturer_id
string
Manufacturer id
>= 1 characters<= 255 characters
classification_id
string
Classification id
>= 1 characters<= 255 characters
custom_classification_name
string
Custom classification name
>= 1 characters<= 255 characters
msl
string
Msl
>= 1 characters<= 6 characters
description
string
Description
>= 1 characters
package
string
Package
>= 1 characters<= 255 characters
terminations
integer
Terminations
termination_type
string
Termination type
>= 1 characters<= 255 characters
reach
enum<string>
Reach
Allowed values:
REACH AffectedREACH CompliantREACH Non-CompliantREACH UnaffectedREACH Unknown
rohs
enum<string>
Rohs
Allowed values:
RoHS Compliant by ExemptionRoHS CompliantRoHS Non-CompliantRoHS UnknownRoHS3 Compliant by ExemptionRoHS3 Compliant
aec
enum<string>
Aec
Allowed values:
AEC-Q001AEC-Q002AEC-Q003AEC-Q004AEC-Q005AEC-Q006AEC-Q100AEC-Q101AEC-Q102AEC-Q103AEC-Q104AEC-Q200AEC-Q unknown
is_custom_part
boolean
optional
Example
{
"parts": [
{
"mpn": "string",
"alternative_mpns": [],
"manufacturer_name": "string",
"custom_id": "string",
"manufacturer_id": "string",
"classification_id": "string",
"custom_classification_name": "string",
"msl": "string",
"description": "string",
"package": "string",
"terminations": 0,
"termination_type": "string",
"reach": "REACH Affected",
"rohs": "RoHS Compliant by Exemption",
"aec": "AEC-Q001",
"is_custom_part": true
}
]
}
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 '/integrations/async_sync_parts/' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw '{
"parts": [
{
"mpn": "string",
"alternative_mpns": [],
"manufacturer_name": "string",
"custom_id": "string",
"manufacturer_id": "string",
"classification_id": "string",
"custom_classification_name": "string",
"msl": "string",
"description": "string",
"package": "string",
"terminations": 0,
"termination_type": "string",
"reach": "REACH Affected",
"rohs": "RoHS Compliant by Exemption",
"aec": "AEC-Q001",
"is_custom_part": true
}
]
}'
Responses
🟢200Success
application/json
Body
string
optional
Example
Queueing {x} parts for creation syncing
Modified at 2024-08-23 03:25:56