device_onboarding_ABM Provisioning

Create a ABM provisioning request using device serial number

⚠️ Apple devices only.

Creates an ABM provisioning request for a single device using its serial number supplied in a JSON request body, pre-assigning it to a blueprint and optionally a group, alias, and tags.

About Create ABM Provisioning Request (Serial Number)

This endpoint is the JSON-body alternative to the CSV upload path for seamless ABM provisioning. It accepts a SeamlessRequestBody containing the assigned_blueprint_id, an optional group_id, an optional alias, an optional tags array, and a seamless_info object with unique_ids (a single device identifier) and unique_id_type. This endpoint provisions exactly one device per request; for bulk provisioning of multiple devices, use POST /api/v2/seamless/upload. On success it returns a single SeamlessRequest record. This is the preferred method for programmatic or API-driven provisioning workflows where a device identifier is available at runtime rather than in a pre-prepared file.

Key Fields

assigned_blueprint_id (body, required) — UUID of the blueprint to assign to the device

group_id (body, optional) — UUID of the group to assign the device to

alias (body, optional) — Human-readable alias to assign to the device; omitting this field never clears an existing device alias

tags (body, optional) — Array of tag names to assign to the device (maximum 5); tag names are resolved to (or created as) tags for the tenant asynchronously

seamless_info.unique_ids (body) — A single device identifier (e.g., a serial number)

seamless_info.unique_id_type (body) — Integer type code identifying the identifier format

id (response) — SeamlessRequest UUID

assigned_blueprint_id (response) — Confirmed blueprint assignment

group_id (response) — Confirmed group assignment (nullable)

alias (response) — Confirmed alias assignment (nullable)

tags (response) — Confirmed tag names assignment (nullable)

Common Use Cases

Programmatically pre-assigning a specific device to a blueprint as part of an automated provisioning pipeline

Registering a known device serial number for zero-touch enrollment without preparing a CSV file

Integrating ABM provisioning into a device lifecycle management workflow driven by an external system

Best Practices

Ensure assigned_blueprint_id references a published blueprint version — assigning an unpublished blueprint will result in a device that cannot complete hands-free enrollment

This endpoint accepts exactly one device identifier per request; a comma-separated or otherwise multi-value unique_ids is rejected with a 400 — use POST /api/v2/seamless/upload with a CSV to provision multiple devices in a single call

For large-scale bulk provisioning, POST /api/v2/seamless/upload with a CSV may be more practical

post/v2/seamless

Request body

assigned_blueprint_idstring uuid
group_idstring uuid
aliasstring nullable
tagsstring[] nullable

Example request

{
  "assigned_blueprint_id": "3e41fd18-d53d-4673-a10a-23089cbb6b73",
  "group_id": "3e41fd18-d53d-4673-a10a-23089cbb6b73",
  "alias": "front-desk-ipad",
  "tags": [
    "warehouse-a",
    "kiosk"
  ],
  "seamless_info": {
    "unique_ids": "3e41fd18-d53d-4673-a10a-23089cbb6b73",
    "unique_id_type": 2
  }
}

Response

Seamless request successfully created.

codeinteger
messagestring

Changes