- 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
Create Supplier Quote
POST
/v1/supplier_quotes/
Request
Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
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/supplier_quotes/' \
--header 'Authorization;'
Responses
🟢200Success
application/json
Body
synced_from_integration
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
integration_source_name
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
x-nullable
booleanÂ
required
integration_record_id
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
x-nullable
booleanÂ
required
synced_from_integration_at
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
format
stringÂ
required
tags
objectÂ
optional
type
stringÂ
required
items
objectÂ
required
uniqueItems
booleanÂ
required
team
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
format
stringÂ
required
x-nullable
booleanÂ
required
custom_properties
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
external_notes
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
x-nullable
booleanÂ
required
supplier_notes
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
x-nullable
booleanÂ
required
quote_number
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
maxLength
integerÂ
required
x-nullable
booleanÂ
required
ship_to
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
format
stringÂ
required
x-nullable
booleanÂ
required
rfq
objectÂ
optional
title
stringÂ
required
type
stringÂ
required
format
stringÂ
required
x-nullable
booleanÂ
required
connection_type
objectÂ
required
title
stringÂ
required
type
stringÂ
required
enum
array[string]
required
Allowed values:
cofactr_paydirectsupplier_network
default
stringÂ
required
org_supplier
objectÂ
required
title
stringÂ
required
type
stringÂ
required
format
stringÂ
required
Example
{
"synced_from_integration": {
"title": "string",
"type": "string"
},
"integration_source_name": {
"title": "string",
"type": "string",
"x-nullable": true
},
"integration_record_id": {
"title": "string",
"type": "string",
"x-nullable": true
},
"synced_from_integration_at": {
"title": "string",
"type": "string",
"format": "string"
},
"tags": {
"type": "string",
"items": {
"type": "string",
"format": "string",
"x-nullable": true
},
"uniqueItems": true
},
"team": {
"title": "string",
"type": "string",
"format": "string",
"x-nullable": true
},
"custom_properties": {
"title": "string",
"type": "string"
},
"external_notes": {
"title": "string",
"type": "string",
"x-nullable": true
},
"supplier_notes": {
"title": "string",
"type": "string",
"x-nullable": true
},
"quote_number": {
"title": "string",
"type": "string",
"maxLength": 0,
"x-nullable": true
},
"ship_to": {
"title": "string",
"type": "string",
"format": "string",
"x-nullable": true
},
"rfq": {
"title": "string",
"type": "string",
"format": "string",
"x-nullable": true
},
"connection_type": {
"title": "string",
"type": "string",
"enum": [
"cofactr_pay"
],
"default": "string"
},
"org_supplier": {
"title": "string",
"type": "string",
"format": "string"
}
}
Modified at 2025-03-18 16:08:53