netbox-community / pynetbox

Python API client library for Netbox.
Apache License 2.0
538 stars 165 forks source link

core/endpoint: Get choices from PUT if POST missing #592

Open BenoitKnecht opened 8 months ago

BenoitKnecht commented 8 months ago

Fixes: #591

If the API token is not allowed to POST on a particular endpoint, choices won't be returned in .actions.POST, but we can still get them in .actions.PUT.

This commit falls back to getting choices from .actions.PUT instead of raising an exception when .actions.POST is missing.