The test API contains a lot of really weird controllers for testing specific features.
GET /api/test
HTTP 200 OK
{
"message": "This is the API root."
}
<?xml version="1.0" encoding="UTF-8"?>
<hash>
<message>This is the API root.</message>
</hash>
Path | Verb | Controller#Action |
---|---|---|
test | GET | api/test#root |
test | OPTIONS | api/test#options |
api/test/added_select | ||
test/added_select | GET | api/test/added_select#index |
test/added_select | POST | api/test/added_select#create |
test/added_select | OPTIONS | api/test/added_select#options |
test/added_select/:id | GET | api/test/added_select#show |
test/added_select/:id | PUT | api/test/added_select#update |
test/added_select/:id | PATCH | api/test/added_select#update |
test/added_select/:id | DELETE | api/test/added_select#destroy |
api/test/bare_create | ||
test/bare_create | POST | api/test/bare_create#create |
test/bare_create | OPTIONS | api/test/bare_create#options |
api/test/fields_hash_exclude | ||
test/fields_hash_exclude | GET | api/test/fields_hash_exclude#index |
test/fields_hash_exclude | POST | api/test/fields_hash_exclude#create |
test/fields_hash_exclude | OPTIONS | api/test/fields_hash_exclude#options |
test/fields_hash_exclude/:id | GET | api/test/fields_hash_exclude#show |
test/fields_hash_exclude/:id | PUT | api/test/fields_hash_exclude#update |
test/fields_hash_exclude/:id | PATCH | api/test/fields_hash_exclude#update |
test/fields_hash_exclude/:id | DELETE | api/test/fields_hash_exclude#destroy |
api/test/fields_hash_only_except | ||
test/fields_hash_only_except | GET | api/test/fields_hash_only_except#index |
test/fields_hash_only_except | POST | api/test/fields_hash_only_except#create |
test/fields_hash_only_except | OPTIONS | api/test/fields_hash_only_except#options |
test/fields_hash_only_except/:id | GET | api/test/fields_hash_only_except#show |
test/fields_hash_only_except/:id | PUT | api/test/fields_hash_only_except#update |
test/fields_hash_only_except/:id | PATCH | api/test/fields_hash_only_except#update |
test/fields_hash_only_except/:id | DELETE | api/test/fields_hash_only_except#destroy |
api/test/network | ||
test/network | OPTIONS | api/test/network#options |
test/network/test | GET | api/test/network#test |
api/test/no_rescue_unknown_format | ||
test/no_rescue_unknown_format | GET | api/test/no_rescue_unknown_format#index |
test/no_rescue_unknown_format | POST | api/test/no_rescue_unknown_format#create |
test/no_rescue_unknown_format | OPTIONS | api/test/no_rescue_unknown_format#options |
test/no_rescue_unknown_format/:id | GET | api/test/no_rescue_unknown_format#show |
test/no_rescue_unknown_format/:id | PUT | api/test/no_rescue_unknown_format#update |
test/no_rescue_unknown_format/:id | PATCH | api/test/no_rescue_unknown_format#update |
test/no_rescue_unknown_format/:id | DELETE | api/test/no_rescue_unknown_format#destroy |
api/test/read_only | ||
test/read_only | GET | api/test/read_only#index |
test/read_only | OPTIONS | api/test/read_only#options |
test/read_only/:id | GET | api/test/read_only#show |
api/test/unknown_model | ||
test/unknown_model | GET | api/test/unknown_model#index |
test/unknown_model | POST | api/test/unknown_model#create |
test/unknown_model | OPTIONS | api/test/unknown_model#options |
test/unknown_model/:id | GET | api/test/unknown_model#show |
test/unknown_model/:id | PUT | api/test/unknown_model#update |
test/unknown_model/:id | PATCH | api/test/unknown_model#update |
test/unknown_model/:id | DELETE | api/test/unknown_model#destroy |
api/test/users | ||
test/users | GET | api/test/users#index |
test/users | POST | api/test/users#create |
test/users | PUT | api/test/users#update_all |
test/users | PATCH | api/test/users#update_all |
test/users | DELETE | api/test/users#destroy_all |
test/users | OPTIONS | api/test/users#options |
test/users/alternate_list | GET | api/test/users#alternate_list |
test/users/:id | GET | api/test/users#show |
test/users/:id | PUT | api/test/users#update |
test/users/:id | PATCH | api/test/users#update |
test/users/:id | DELETE | api/test/users#destroy |
test/users/:id/description | GET | api/test/users#description |
api/test/users_with_sub_fields | ||
test/users_with_sub_fields | GET | api/test/users_with_sub_fields#index |
test/users_with_sub_fields | POST | api/test/users_with_sub_fields#create |
test/users_with_sub_fields | OPTIONS | api/test/users_with_sub_fields#options |
test/users_with_sub_fields/:id | GET | api/test/users_with_sub_fields#show |
test/users_with_sub_fields/:id | PUT | api/test/users_with_sub_fields#update |
test/users_with_sub_fields/:id | PATCH | api/test/users_with_sub_fields#update |
test/users_with_sub_fields/:id | DELETE | api/test/users_with_sub_fields#destroy |