GET /api/demo/emails
HTTP 200 OK
{
"count": 0,
"page": 1,
"page_size": 30,
"total_pages": 0,
"results": [
]
}
<?xml version="1.0" encoding="UTF-8"?>
<hash>
<count type="integer">0</count>
<page type="integer">1</page>
<page-size type="integer">30</page-size>
<total-pages type="integer">0</total-pages>
<results type="array"/>
</hash>
Path | Verb | Controller#Action |
---|---|---|
emails | GET | api/demo/emails#index |
emails | POST | api/demo/emails#create |
emails | PUT | api/demo/emails#update_all |
emails | PATCH | api/demo/emails#update_all |
emails | DELETE | api/demo/emails#destroy_all |
emails | OPTIONS | api/demo/emails#options |
emails/:id | GET | api/demo/emails#show |
emails/:id | PUT | api/demo/emails#update |
emails/:id | PATCH | api/demo/emails#update |
emails/:id | DELETE | api/demo/emails#destroy |