Octave API

How do I apply blueprint to device using an API call ?
Thanks.

Hello Roman,

here is a dedicated API call to apply any Blueprint/version to a list of devices:

curl --request PUT \

–url https://octave-api.sierrawireless.io/v5.0/company_name/blueprint/apply
–header ‘content-type: application/json’
–header ‘x-auth-token: xxx’
–header ‘x-auth-user: yyy’
–data '{
“blueprint”: {“id”: “bxxxxxxxxxxxxxxx”, “version”: 1},
“deviceIds”: [“dyyyyyyyyyyyyyy”,“dzzzzzzzzzzzzzzzzzzzz”,…]
}

A.