Posts
7 endpoints, using GET, POST, DELETE.
| Method | Endpoint | Path |
|---|---|---|
| GET | Fetch a bulk post by ID | /bulk-posts/{bulkPostId} |
| GET | Fetch bulk posts for a location | /locations/{locationId}/bulk-posts |
| GET | Fetch posts for a location | /locations/{locationId}/posts |
| GET | Get a single post | /posts/{postId} |
| POST | Create a bulk post | /bulk-posts |
| POST | Create a post | /posts |
| DELETE | Delete a post | /posts/{postId} |