Created
October 29, 2012 18:03
-
-
Save caseysoftware/3975297 to your computer and use it in GitHub Desktop.
OPTIONS sample for Projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -X OPTIONS 'http://localhost/web2project-slim/projects' -v | python -m json.tool | |
| { | |
| "actions": { | |
| "create": { | |
| "href": "/web2project-slim/projects", | |
| "method": "POST", | |
| "optional": [ | |
| "project_company", | |
| "project_name", | |
| "project_short_name", | |
| "project_owner", | |
| "project_url", | |
| "project_demo_url", | |
| "project_start_date", | |
| "project_end_date", | |
| "project_actual_end_date", | |
| "project_status", | |
| "project_percent_complete", | |
| "project_color_identifier", | |
| "project_description", | |
| "project_target_budget", | |
| "project_actual_budget", | |
| "project_scheduled_hours", | |
| "project_worked_hours", | |
| "project_task_count", | |
| "project_creator", | |
| "project_active", | |
| "project_private", | |
| "project_priority", | |
| "project_type", | |
| "project_parent", | |
| "project_location", | |
| "project_original_parent", | |
| "project_departments", | |
| "project_contacts" | |
| ], | |
| "required": [ | |
| "project_name", | |
| "project_short_name", | |
| "project_company", | |
| "project_owner", | |
| "project_creator", | |
| "project_priority", | |
| "project_color_identifier", | |
| "project_type", | |
| "project_status" | |
| ] | |
| }, | |
| "delete": { | |
| "href": "/web2project-slim/projects:id", | |
| "method": "DELETE", | |
| "required": [ | |
| "project_id" | |
| ] | |
| }, | |
| "edit": { | |
| "href": "/web2project-slim/projects:id", | |
| "method": "PATCH", | |
| "optional": [ | |
| "project_company", | |
| "project_name", | |
| "project_short_name", | |
| "project_owner", | |
| "project_url", | |
| "project_demo_url", | |
| "project_start_date", | |
| "project_end_date", | |
| "project_actual_end_date", | |
| "project_status", | |
| "project_percent_complete", | |
| "project_color_identifier", | |
| "project_description", | |
| "project_target_budget", | |
| "project_actual_budget", | |
| "project_scheduled_hours", | |
| "project_worked_hours", | |
| "project_task_count", | |
| "project_creator", | |
| "project_active", | |
| "project_private", | |
| "project_priority", | |
| "project_type", | |
| "project_parent", | |
| "project_location", | |
| "project_original_parent", | |
| "project_departments", | |
| "project_contacts" | |
| ], | |
| "required": [ | |
| "project_id" | |
| ] | |
| }, | |
| "filter": { | |
| "href": "/web2project-slim/projects", | |
| "method": "GET", | |
| "optional": [ | |
| "page", | |
| "limit" | |
| ] | |
| }, | |
| "help": { | |
| "href": "/web2project-slim/projects", | |
| "method": "OPTIONS" | |
| }, | |
| "index": { | |
| "href": "/web2project-slim/projects", | |
| "method": "GET" | |
| }, | |
| "search": { | |
| "href": "/web2project-slim/projects", | |
| "method": "GET", | |
| "required": [ | |
| "search" | |
| ] | |
| }, | |
| "view": { | |
| "href": "/web2project-slim/projects:id", | |
| "method": "GET", | |
| "required": [ | |
| "project_id" | |
| ] | |
| } | |
| }, | |
| "resource_uri": "/projects", | |
| "root_uri": "/web2project-slim", | |
| "self": "/web2project-slim/projects" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment