Image

(Difference between revisions)
Jump to: navigation, search
(Examples)
Line 9: Line 9:
 
== Result ==
 
== Result ==
 
=== JSON ===
 
=== JSON ===
<big><source lang="javascript">
+
<nowiki>
 
{
 
{
 
   "image":{
 
   "image":{
Line 29: Line 29:
 
   }
 
   }
 
}
 
}
</source></big>
+
</nowiki>
 
+
  
 
; id - ''string''
 
; id - ''string''
Line 63: Line 62:
  
 
== Examples ==
 
== Examples ==
'''View image'''
+
'''Successfully view image'''
 
:'''GET''' <nowiki>http://{api_server}/images/133</nowiki>
 
:'''GET''' <nowiki>http://{api_server}/images/133</nowiki>
  
Line 98: Line 97:
 
</nowiki>
 
</nowiki>
  
'''Unauthorized request'''
+
'''Failure while trying to make an unauthorized request'''
 
:'''GET''' <nowiki>http://{api_server}/images/{image_id}</nowiki>
 
:'''GET''' <nowiki>http://{api_server}/images/{image_id}</nowiki>
  
 
''Request Headers:''
 
''Request Headers:''
 
     Content-Type:application/json
 
     Content-Type:application/json
 +
    Charset=UTF-8
 +
    Authorization:Base64-encoded <span style="color:red">fake_authentication_string</span>
  
 
''Response Code:''
 
''Response Code:''
Line 114: Line 115:
 
     does not understand how to supply the credentials required.
 
     does not understand how to supply the credentials required.
  
'''Permission denied'''
+
'''Permission denied failure'''
:'''GET''' <nowiki>http://{api_server}/images/{image_id}</nowiki>
+
:'''GET''' http(s)://{api_server}/images/{image_id}
  
 
''Request Headers:''
 
''Request Headers:''
Line 134: Line 135:
 
       }
 
       }
 
  }
 
  }
'''Request for image that does not exist'''
+
 
:'''GET''' <nowiki>http://{api_server}/images/{fake_image_id}</nowiki>
+
'''Failure while trying to request for an image that does not exist'''
 +
:'''GET''' http(s)://{api_server}/images/{<span style="color:red">fake_image_id</span>}
  
 
''Request Headers:''
 
''Request Headers:''

Revision as of 15:58, 4 July 2012

This operation will return details of a single image.

GET /images/id

Contents

Parameters

id
The unique identifier of the image to be retrieved. Note see warnings in Hypermedia.

Result

JSON

{
   "image":{
      "status":"SAVING",
      "updated":null,
      "name":"{display_image_name}",
      "links":[
         {
            "href":"http://{api_server}/images/{image_id}/",
            "rel":"self"
         },
         {
            "href":"http://{api_server}/images/{image_id}/",
            "rel":"bookmark"
         }
      ],
      "created":"2011-09-30T02:38:57",
      "id":"{image_id}"
   }
}

id - string
Unique identifier for this image.
links - array
Hypermedia for this resource.
name - string
Display name for this image.
status - string
Current state of this image. Valid values are ACTIVE, SAVING, DELETED.
ACTIVE - Image is ready to be used.
SAVING - Image is being uploaded or saved from a running Server instance.
DELETED - Image was recently deleted or is in the process of being deleted.
created - string
The date and time the image was created. ISO 8601 format, YYYY-MM-DDTHH:MM:SS.
updated
Unused always null.

Response Codes

Success
HTTP/1.1 200 OK
Failure
HTTP/1.1 401 Unauthorized - This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.
HTTP/1.1 403 Forbidden - The resource is forbidden for this user
HTTP/1.1 404 Not Found - The resource does not exist

Examples

Successfully view image

GET http://{api_server}/images/133

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 200 OK

Response Body:

 {
    "image": 
       {
          "status": "SAVING", 
          "updated": null, 
          "name": "test_debian_image", 
          "links": [
             {
                "href": "http://{api_server}/images/133/", 
                "rel": "self"
             },
             {
                "href": "http://{api_server}/images/133/", 
                "rel": "bookmark"
             }
          ], 
          "created": "2011-09-30T02:38:57", 
          "id": "133"
       }
 }

Failure while trying to make an unauthorized request

GET http://{api_server}/images/{image_id}

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded fake_authentication_string

Response Code:

HTTP/1.1 401 Unauthorized

Response Body:

    401 Unauthorized
    This server could not verify that you are authorized to
    access the document you requested.  Either you supplied the
    wrong credentials (e.g., bad password), or your browser
    does not understand how to supply the credentials required.

Permission denied failure

GET http(s)://{api_server}/images/{image_id}

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 403 Forbidden

Response Body:

{
   "forbidden": 
      {
         "message": "forbidden", 
         "code": 403, 
         "details": ""
      }
}

Failure while trying to request for an image that does not exist

GET http(s)://{api_server}/images/{fake_image_id}

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 404 Not Found

Response Body:

{
   "itemNotFound": 
      {
         "message": "Resource not found", 
         "code": 404, 
         "details": ""
      }
}


blog comments powered by Disqus


Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox