---
title: "Create an integration blueprint"
method: POST
path: "/integration_blueprints"
tags: ["Blueprints"]
---

# Create an integration blueprint

`POST /integration_blueprints`

Use this endpoint to create an integration blueprint.

## Headers

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

## Request body

- object — Request body to create an integration blueprint.
  - `enabled` boolean, required — A flag to indicate if the integration blueprint is enabled.
  - `description` string — The description of the integration blueprint.
  - `integration_blueprint_fields` object[] — A list of integration blueprint fields associated with the integration blueprint.
    - `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.
  - `integration_id` integer, required — The ID of the integration this blueprint belongs to.
  - `name` string, required — The name of the integration blueprint.

## Response `200`

Returns the created integration blueprint.

- object — Integration blueprint attributes
  - `created_time` string, datetime, nullable
  - `description` string, nullable
  - `enabled` boolean, required
  - `id` integer, required
  - `integration_blueprint_fields` object[], required — All integration blueprint fields associated with 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
  - `integration_id` integer, nullable, required
  - `name` string, required
  - `updated_time` string, datetime, nullable

## Other responses

- `400` — Invalid format or content of the request.
- `401` — The API token or the user email is invalid.
- `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)
