VAN REST API exposes resources as varied as those available through the VAN user interface. Unless specified otherwise, these endpoints only respond to and return JSON
. Most REST conventions are followed: GET /resources
lists all resources in the authenticated context, GET /resources/{id}
gets the details of a specific object, POST /resources
creates a new object, PUT /resources/{id}
updates a specific object, and DELETE /resources/{id}
deletes or suppresses a specific object. Some endpoints also support the PATCH
HTTP verb for partial resource updates.