Methods
How you act on resources.
What are methods?
Methods tell us, in general, what you want to do with a resource.
Our API uses standard HTTP methods, such as GET, POST, and DELETE.
What methods can I use?
All the specific methods you can use with our endpoints can be found in our API explorer.
In general, here are the different methods we support:
| Method | Description |
|---|---|
| GET | Get information about a resource without affecting it. Examples:
|
| PATCH | Update part of a resource. Examples:
|
| POST | Take action on a resource. Examples:
|
| PUT | Replace a resource. Examples:
|
| DELETE | Delete a resource. Examples:
|
More information
- "HTTP Methods: GET vs. POST" by W3Schools
Updated 10 months ago
What’s Next
Methods tell us the basics of how you want to work with a resource, but parameters give us the details.
Did this page help you?
