Seamless Provisioning

APIs to perform seamless provisioning

Create a seamless provisioning request by uploading file

SecurityapiKey07
Request
Request Body schema: multipart/form-data
required
csv_file
string <binary>
Responses
200

Seamless provisioning request successfully created.

400

Bad request

401

Authorization information is missing or invalid.

500

Internal server error

post/v2/seamless/upload
Request samples
Response samples
application/json
{
  • "code": 0,
  • "message": "string",
  • "content": {
    }
}

Create a seamless provisioning request using device serial number

SecurityapiKey07
Request
Request Body schema: application/json
required
assigned_blueprint_id
string <uuid>
group_id
string <uuid>
object (SeamlessInfo)
Responses
200

Seamless request successfully created.

400

Bad request

401

Authorization information is missing or invalid.

500

Internal server error

post/v2/seamless
Request samples
application/json
{
  • "assigned_blueprint_id": "3e41fd18-d53d-4673-a10a-23089cbb6b73",
  • "group_id": "3e41fd18-d53d-4673-a10a-23089cbb6b73",
  • "seamless_info": {
    }
}
Response samples
application/json
{
  • "code": 0,
  • "message": "string",
  • "content": {
    }
}