| Required permission: | all |
| PUT | /customer/{CustomerId}/CustomFields/ |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| CustomerId | path | string | Yes | |
| Values | body | CustomFieldNumberValue[] | Yes |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Number | form | int | Yes | |
| Value | form | Object | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /customer/{CustomerId}/CustomFields/ HTTP/1.1
Host: bestellforum.api.mauve.de
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
CustomerId: String,
Values:
[
{
Number: 0,
Value: {}
}
]
}