| GET |
For simple retrieval of information about a resource (Agreement, Clauses, etc) you should use the GET method. The information you request will be returned to you as a JSON object |
| POST |
To create a new resource, your request should specify the POST method. The POST request must include all of the attributes necessary to create a new object. POST can also be used to submit an command. |
| PUT |
To update the information about a resource in your account, the PUT method is available. PUT method is idempotent. It sets the state of the target using the provided values, regardless of their current values. |
| DELETE |
To remove a resource from your environment, the DELETE method should be used. This will remove the specified object if it is found. If it is not found, the operation will return a response indicating that the object was not found. |