Data Definition
Additional data fields for the order module
HTTP Request
GET /api/v3/orders/custom_fields
Response
Field | Type | Description |
---|---|---|
field_id | int | ID of the defined data field |
field_htmltype | string | Data type (input, textarea, select, checkbox, href) |
field_name | string | Code of the defined field, this code is unique |
field_description | string | Description |
options | array | Options returned in case the data type is select |
[
{
"field_id": "189",
"field_htmltype": "textarea",
"field_name": "order_attribute_textarea",
"field_description": "Order Attribute (Textarea)",
"options": []
}
]