Vault API: standard HTTP methods

Greetings.

Some of the Vault API endpoints use LIST HTTP method. Are there any equivalent API calls that use only standard methods? In particular, I’m interested in

/auth/token/accessors

Can I get a list of token accessors using only standard methods, like GET, POST, etc? I can pass LIST to curl command, but the Java library I’m using doesn’t support non-standard methods.

Thanks.

Hello!

Yes - LIST requests can be done by using GET with ?list=true appended to the url. See this section in the docs: https://www.vaultproject.io/api/overview#api-operations

Amazing. Thank you Matthew so much!