put https://example.com/host-store/api/v1/hosts/
Update a single host in host store
Log in to see full request history
Responses
200Host successfully updated
Update a single host in host store
200Host successfully updated
xxxxxxxxxx
15curl --request PUT \
--url https://example.com/host-store/api/v1/hosts/host_id \
--header 'Authorization: Bearer a-proper-token-goes-here' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"password_rotation": {
"use_main_account": true,
"operating_system": "LINUX",
"protocol": "SSH",
"certificate_validation_options": "DISABLED"
}
}
'
Try It!
to start a request and see the response here!