Alokai

CustomFields

Custom fields model.

interface CustomFields {
	id: number;
	name: string;
	value: string;
}

Properties

NameRequiredTypeDescription
idRequirednumberThe unique numeric ID of the custom field; increments sequentially. Required to update existing custom field in /PUT request. Read-Only.
nameRequiredstringThe name of the field, shown on the storefront, orders, etc. Required for /POST.
valueRequiredstringThe name of the field, shown on the storefront, orders, etc. Required for /POST

On this page