Skip to main content
Question

Change Asset IP Address

  • July 30, 2026
  • 3 replies
  • 18 views

chitta201918
Forum|alt.badge.img

Is there any way to change IP address of already onboarded assets to Beyondtrust password safe? everytime we have to delete the older asset and then re-onboard the asset.

3 replies

Pulitros144
Forum|alt.badge.img+5
  • Veteran
  • July 30, 2026

@chitta201918 you can do that using API


chitta201918
Forum|alt.badge.img
  • Author
  • Apprentice
  • July 30, 2026

@chitta201918 you can do that using API

oh really?, have you tried this? any knowledge article available?


Pulitros144
Forum|alt.badge.img+5
  • Veteran
  • July 30, 2026

@chitta201918 you can do that using API

oh really?, have you tried this? any knowledge article available?

Yep!

I do it all the time via API. I don’t believe there is a specific KB for that exact scenario, but there is one explaining how to use the API with some examples (KB0017018).

In the API documentation, you should look at the Update asset section:

curl --request PUT \
     --url https://example.com/beyondtrust/api/public/v3/assets/10101 \
     --header 'accept: application/json' \
     --header 'content-type: application/*+json' \
     --data '
{
  "IPAddress": "10.10.10.10"
}