Methods and naming conventions
The v1 API uses standard HTTP methods for indicating the action to take on a resource.
Method | Example URI | Description |
---|---|---|
GET | /campaigns | Retrieve a paginated* collection of resources. |
POST | /campaigns | Create a new resource. |
GET | /campaigns/{campaign} | Retrieve a specific instance of the resource (hashed_id). |
PUT/PATCH | /campaigns/{campaign} | Update a resource |
DELETE | /campaigns/{campaign} | Remove a resource |