SuccessResultResponseOfCustomFieldSpecificationListResponseDto
result objectnullablerequired
customFields object[]required
The list of custom field specifications.
Array [
idstring<uuid>required
The unique kaunt identifier of the field.
Example:
227aebd0-36a4-4d17-b96d-c5b5d071abd4fieldNamestringrequired
The name of the custom field.
Example:
Supplier IDfieldTypeCustomFieldTypeEnumrequired
The type of the custom field, indicating whether it is a text or number field.
Possible values: [Text, Number]
Example:
TextfieldLevelFieldLevelEnumrequired
The level of the custom field, indicating whether it applies to the header or line level of a document.
Possible values: [Header, Line]
Example:
HeaderfieldDescriptionstringnullable
The description of the custom field.
Example:
The ID of the supplier.fieldExtractionInstructionstringrequired
The extraction instruction for the custom field.
Example:
Extract the supplier ID from the document.]
correlationIdstring<uuid>
A unique ID of the request
Example:
fb0ccbbc-62bc-447f-a47e-02b490e25690isSuccessboolean
Indication of whether the request was successfull
SuccessResultResponseOfCustomFieldSpecificationListResponseDto
{
"result": {
"customFields": [
{
"id": "227aebd0-36a4-4d17-b96d-c5b5d071abd4",
"fieldName": "Supplier ID",
"fieldType": "Text",
"fieldLevel": "Header",
"fieldDescription": "The ID of the supplier.",
"fieldExtractionInstruction": "Extract the supplier ID from the document."
}
]
},
"correlationId": "fb0ccbbc-62bc-447f-a47e-02b490e25690",
"isSuccess": true
}