Body
Required
-
fieldScope
string | null Required Field scope
Values are
all
orselected
. Default value isall
. -
fieldType
string | null Required Field type
Values are
string
,text
,image
,file
, oroptions
. Default value isstring
. -
helpText
string | null Help text
-
icon
string | null Icon
-
label
string | null Label
-
name
string Required Name
-
namespace
string | null Namespace
-
options
array[string] | null Options
-
resource
string | null Required Resource
Values are
any
,dropship_provider
,dropshipment
,dropshipment_item
,reseller
,purchase
,purchase_item
,sale
,sale_item
,sale_return
,sale_return_item
,variant
, orvendor
. Default value isany
. -
showInResellerPortal
boolean | null Show in reseller portal
-
showInReturnPortal
boolean | null Required Show in return portal
Default value is
false
. -
showInVendorPortal
boolean | null Required Show in vendor portal
Default value is
false
.
POST
/custom-fields.json
curl \
--request POST 'http://api.example.com/v1/custom-fields.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"fieldScope":"all","fieldType":"string","helpText":"string","icon":"string","label":"string","name":"string","namespace":"string","options":["string"],"resource":"any","showInResellerPortal":true,"showInReturnPortal":false,"showInVendorPortal":false}'
Request examples
{
"fieldScope": "all",
"fieldType": "string",
"helpText": "string",
"icon": "string",
"label": "string",
"name": "string",
"namespace": "string",
"options": [
"string"
],
"resource": "any",
"showInResellerPortal": true,
"showInReturnPortal": false,
"showInVendorPortal": false
}
Response examples (200)
{
"createdAt": "2025-05-04T09:42:00Z",
"fieldScope": "all",
"fieldType": "string",
"helpText": "string",
"icon": "string",
"id": 42,
"label": "string",
"name": "string",
"namespace": "string",
"options": [
"string"
],
"resource": "any",
"showInResellerPortal": true,
"showInReturnPortal": false,
"showInVendorPortal": false,
"updatedAt": "2025-05-04T09:42:00Z"
}