Request body for moving an existing field within a template to a new position.

interface IMoveTemplateFieldRequest {
    fieldName: string;
    newPosition: number;
}

Implemented by

Properties

fieldName: string

The name of the field to move. Required. Must already be part of the template.

newPosition: number

The 1-based target position. Required. Values less than 1 or greater than the current field count are rejected with 400.