GET /test_api/marbles_without_rescue_unknown_format
HTTP 200 OK
Content-Type: text/html; charset=utf-8
[
{
"id": 1,
"name": "Example Marble 1"
},
{
"id": 2,
"name": "Example Marble 2"
},
{
"id": 3,
"name": "Admin Marble 1"
},
{
"id": 4,
"name": "Admin Marble 2"
},
{
"id": 5,
"name": "Orphan Marble 1"
},
{
"id": 6,
"name": "Orphan Marble 2"
}
]
<?xml version="1.0" encoding="UTF-8"?>
<objects type="array">
<object>
<id type="integer">1</id>
<name>Example Marble 1</name>
</object>
<object>
<id type="integer">2</id>
<name>Example Marble 2</name>
</object>
<object>
<id type="integer">3</id>
<name>Admin Marble 1</name>
</object>
<object>
<id type="integer">4</id>
<name>Admin Marble 2</name>
</object>
<object>
<id type="integer">5</id>
<name>Orphan Marble 1</name>
</object>
<object>
<id type="integer">6</id>
<name>Orphan Marble 2</name>
</object>
</objects>
Path | Verb | Controller#Action |
---|---|---|
marbles_without_rescue_unknown_format | GET | test_api/marbles_without_rescue_unknown_format#index |
marbles_without_rescue_unknown_format | POST | test_api/marbles_without_rescue_unknown_format#create |
marbles_without_rescue_unknown_format | OPTIONS | test_api/marbles_without_rescue_unknown_format#options |
marbles_without_rescue_unknown_format/:id | GET | test_api/marbles_without_rescue_unknown_format#show |
marbles_without_rescue_unknown_format/:id | PUT | test_api/marbles_without_rescue_unknown_format#update |
marbles_without_rescue_unknown_format/:id | PATCH | test_api/marbles_without_rescue_unknown_format#update |
marbles_without_rescue_unknown_format/:id | DELETE | test_api/marbles_without_rescue_unknown_format#destroy |