- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Add host record to multiple views with one wapi invocation
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2019 10:29 AM
I am adding host records to multple views. I am doing it by issuing https://$infoblox_ip/wapi/v1.4.1/record:host multple times changing the "view": "$thisview" stanza each time. Is tehre a way to add a host record to multple views with one https invocation?
Re: Add host record to multiple views with one wapi invocation
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2019 11:05 AM
Each host record in each view will be a separate object and therefore each host record needs to be constructed and added independantly.
You can perform multiple operations in a single call, using a multiple body request call. There are a number of examples on the community site you can use to get started.
Re: Add host record to multiple views with one wapi invocation
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2019 11:31 AM
Thank you!