---
title: "Update integration blueprint fields"
method: PUT
path: "/integration_blueprints/{integration_blueprint_id}/integration_blueprint_fields"
tags: ["Blueprint - Fields"]
---

# Update integration blueprint fields

`PUT /integration_blueprints/{integration_blueprint_id}/integration_blueprint_fields`

Use this endpoint to update integration blueprint fields related to the specified integration blueprint.

## Path parameters

- `integration_blueprint_id` integer, required

## Headers

- `x-oneflow-api-token` string, required
- `x-oneflow-user-email` string, email

## Request body

- object — The array of integration blueprint fields to be updated in an integration blueprint.
  - `integration_blueprint_fields` union[], required — The list of data fields that belong to the given integration blueprint.
    - union
      - object — Create a new integration blueprint field.
        - `custom_id` string, required — A single unique ID of the integration blueprint field.
        - `description` string, nullable — The description of the integration blueprint field.
        - `mapping_required` boolean — A flag to indicate if the mapping is required for integration blueprint field.
        - `name` string, required — The name of the integration blueprint field.
      - object — Update an existing integration blueprint field.
        - `custom_id` string — A single unique ID of the integration blueprint field.
        - `description` string, nullable — The description of the integration blueprint field.
        - `id` integer, required — The unique identifier of the integration blueprint field.
        - `mapping_required` boolean — A flag to indicate if the mapping is required for integration blueprint field.
        - `name` string — The name of the integration blueprint field.
      - object — Delete an existing integration blueprint field.
        - `id` integer, required — The unique identifier of the integration blueprint field.
        - `remove` true, required — A flag to indicate if the integration blueprint field is to be removed.

## Response `200`

Returns the updated integration blueprint fields.

- object — A list of integration blueprint fields related to an integration blueprint.
  - `count` integer, required — The total number of integration blueprint fields returned.
  - `data` object[], required — A list of integration blueprint fields related to the given integration blueprint.
    - `created_time` string, datetime, required
    - `custom_id` string, required
    - `description` string, nullable, required
    - `id` integer, required
    - `mapping_required` boolean, required
    - `name` string, required
    - `updated_time` string, datetime, nullable, required

## Other responses

- `400` — Invalid format or content of the request.
- `401` — The API token or the user email is invalid.
- `404` — A required entity is missing.
- `409` — A conflict occurred with the current state of the target resource.

---

[API](https://skmtc.net/oneflow/apis/public-api-for-oneflow.md) · [All operations](https://skmtc.net/oneflow/apis/public-api-for-oneflow/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oneflow/public-api-for-oneflow/versions/0e73a45dec15/schema)
