# Add an option to a field Add a an option for a field. Supported field types: MultiOption, Option Endpoint: POST /v2/fields/{fieldId}/options ## Path parameters: - `fieldId` (string, required) The API name for the field Example: "my_field" ## Request fields (application/json): - `label` (string,null, required) The user defined label of the field option Example: "Option A" ## Response 201 fields (application/json): - `value` (string,null, required) Example: "75467" ## Response 400 fields (application/problem+json): - `detail` (string) More information about the problem. - `instance` (string) The URI of the resource which the error relates to. - `operationId` (string) A unique trace identifier for the request. This should be provided when requesting support. - `status` (integer) The HTTP status code for the problem. - `title` (string) A short description of the error. - `type` (string) A URI which can be followed to find out more about the problem. ## Response 404 fields (application/problem+json): - `detail` (string) More information about the problem. - `instance` (string) The URI of the resource which the error relates to. - `operationId` (string) A unique trace identifier for the request. This should be provided when requesting support. - `status` (integer) The HTTP status code for the problem. - `title` (string) A short description of the error. - `type` (string) A URI which can be followed to find out more about the problem.