API Method: GET room

Shows the room info and it's available users.

Path:

/api/v2/rooms/#{room_id}.#{format}

Formats:

xml, json

HTTP Method(s):

GET

Usage examples:

$ curl -u api_token:x https://bigbang.jaconda.im/api/v2/rooms/support.xml

Response:

XML example:

<?xml version="1.0" encoding="UTF-8"?>
<room>
  <created-at type="datetime">2010-05-14T20:02:04+06:00</created-at>
  <greeting-text>Hi, welcome to Support.</greeting-text>
  <is-public type="boolean">true</is-public>
  <jid>support</jid>
  <title>Support</title>
  <topic>9am to 6pm EST</topic>
  <updated-at type="datetime">2011-02-24T09:57:48+05:00</updated-at>
  <icon-url>https://jaconda.im/images/defaultJacondaIcon.png</icon-url>
  <available-users type="array">
    <available-user type="User">
      <created-at type="datetime">2010-05-14T20:01:23+06:00</created-at>
      <email>developer@gmail.com</email>
      <id type="integer">18265</id>
      <jabber-id>developer@gmail.com</jabber-id>
      <job-title>Lead engineer</job-title>
      <kind>member</kind>
      <location>Russia</location>
      <msn-id></msn-id>
      <name>John</name>
      <phone></phone>
      <skype-id>john</skype-id>
      <twitter-id>john</twitter-id>
      <updated-at type="datetime">2011-02-25T14:24:08+05:00</updated-at>
    </available-user>
    <available-user type="User">
      <created-at type="datetime">2010-05-14T20:01:41+06:00</created-at>
      <email>designer@gmail.com</email>
      <id type="integer">18266</id>
      <jabber-id>designer@gmail.com</jabber-id>
      <job-title></job-title>
      <kind>regular</kind>
      <location>CA</location>
      <msn-id></msn-id>
      <name>Nick</name>
      <phone></phone>
      <skype-id></skype-id>
      <twitter-id></twitter-id>
      <updated-at type="datetime">2011-02-10T20:58:46+05:00</updated-at>
    </available-user>
  </available-users>
</room>