Comment 4 for bug 1151747

Revision history for this message
Dolph Mathews (dolph) wrote :

The following JSON structure should be properly handled by the xml_body middleware:

  {"users": [{...}, {...}, {...}],
   "links": {
     "self": "http://identity:35357/v3/users",
     "next": null,
     "previous": null
    }
  }

And translated to something like:

  <users>
    <user />
    <user />
    <user />
    <link rel="self" href="http://identity:35357/v3/users">
  </users>