Hi.
From your docs:
Onboard with thingID
The following is an example of a thing onboarding with its thingID.
curl -v -X POST \
-H "Authorization: Bearer {ACCESS_TOKEN}" \
-H "X-Kii-AppID: {APP_ID}" \
-H "X-Kii-AppKey: {APP_KEY}" \
-H "Content-Type: application/vnd.kii.OnboardingWithThingIDByThing+json" \
"https://api.kii.com/thing-if/apps/{APP_ID}/onboardings" \
-d '{
"thingID": "{THING_ID}",
"thingPassword": "{THING_PASSWORD}"
}'
A Thing that is onboarding itself is passing it's own access token for authentication here. Then why is it needed to pass the password in the data? Isn't it redundant?
Thanks