A custom field allows you to describe what a custom field of a customer is used for via a label. Only custom fields that have a label are shown per customer in your Partner Portal. There are only 10 custom fields available.
id | integer <int32> [ 1 .. 10 ] Custom field identifier. |
label required | string [ 0 .. 50 ] characters Custom field label. Determines the display name in the Partner Portal for a customer's custom field. |
{- "id": 1,
- "label": "ERP administration code"
}
Retrieve a list of custom fields.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "id": 1,
- "label": "ERP administration code"
}
], - "total": 3255
}
Retrieve a single custom field by its identifier.
Successful response.
An error occurred - see status code and problem response for more information.
{- "id": 1,
- "label": "ERP administration code"
}
Update the settings for a custom field.
The custom field settings you want to update.
Successful response.
An error occurred - see status code and problem response for more information.
{- "label": "ERP administration code"
}
{- "id": 1,
- "label": "ERP administration code"
}