- 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
Get Custom Property
Developing
GET
/v1/custom_properties/{custom_property_id}/
Request
Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Path Params
custom_property_id
string
required
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 GET '/v1/custom_properties//' \
--header 'Authorization;'
Responses
🟢200Success
application/json
Body
array of:
id
string <uuid>
required
key
string
required
inheritance_key
string | null
required
name
string
required
active
boolean
required
default_value
string | null
required
nullable
boolean
required
model
enum<string>
required
Allowed values:
orgproduction_runorg_partstock_lotstock_locationorg_supplierpurchasepurchase_linepurchase_no_part_linepurchase_requestbom_linebomusershipmentshipment_line
visibility
array[string]
required
Allowed values:
new_record_dialogedit_record_dialogdatagrid_editdatagrid_read_onlyinfo_sectiondetail_sidebarwarehouse
data_type
enum<string>
required
Allowed values:
stringnumberdatedatetimeuserbooleansingle_choicemulit_choice
values
array [object {4}]
required
id
string <uuid>
required
value
string
required
label
string
required
metadata
object | null
required
Example
[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"key": "string",
"inheritance_key": "string",
"name": "string",
"active": true,
"default_value": "string",
"nullable": true,
"model": "org",
"visibility": [
"new_record_dialog"
],
"data_type": "string",
"values": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"value": "string",
"label": "string",
"metadata": {}
}
]
}
]
Modified at 2024-09-03 23:43:42