View Browser


                https://api.ocamba.com/v2/ocamba/browsers/{id}
            

Retrieves the details of a Browser if a valid identifier was provided


Name
Description
idintegerrequired
Unique browser "id"

Name
Description
fieldsstring
The client can request more efficient filtered representation of the resource showing only specific field(s), using the “fields” query parameter. Note that the “fields” parameter has precedence over the “view” parameter.

Example GET /v2/ocamba/RESOURCE_NAME?fields=id,name

See "Tips" for the list of filterable parameters.


Example: fields=field1,field2,field3

viewstring
Ocamba API returns full representation of the resource using the “view=full” query parameter. If not specified, the default view will be used.

Note that the “fields” parameter has precedence over the “view” parameter.


Example: view=full/default


200 - OK
Arrow
Name
Description
items[ browser ]
An array of all created items.
Browser
Name
Description
idstring
A unique identifier generated by the Ocamba platform.


Example: 12

namestring
Browser name.


Example: Chrome

versions[ browser-version ]
Array of browser versions objects.
Browser Version
Name
Description
idstring
A unique identifier generated by the Ocamba platform.


Example: 174

namestring
Full name of the browser version.


Example: Chrome 10

versionsstring
Versions number.


Example: 10.0

totalinteger
A total number of items.


Example: 1
tip
1 If you don't know the browser id, list the browsers to find it.
200 Arrow
{
    "total": 1,
    "items": [
        {
          "id": "72",
          "name": "Android"
        }
    ]
}
{
  "total": 1,
  "items": [
    {
      "id": "12",
      "name": "Chrome",
      "versions": [
        {
          "id": "174",
          "name": "Chrome 10",
          "versions": "10.0"
        }
      ]
    }
  ]
}