View Os


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

Retrieves the details of an OS if a valid identifier was provided


Name
Description
idstringrequired
Unique id of the operating system. Example - 12


Example: 12

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[ os ]
An array of all created items.
Os
Name
Description
idstring
A unique identifier generated by the Ocamba platform.


Example: 12

namestring
Operation system name.


Example: Android

versionsos-version
Array of os versions objects.
Os Version
Name
Description
idstring
A unique identifier generated by the Ocamba platform.


Example: 12

namestring
Full name of operating system version.


Example: Android

versionsstring
Versions number.


Example: 11.0

totalinteger
A total number of items.


Example: 1
tip
1 If you don't know the os id, list the oss to find it.
200 Arrow
{
    "total": 1,
    "items": [
        {
          "id": "12",
          "name": "Android"
        }
    ]
}
{
  "total": 1,
  "items": [
    {
      "id": "12",
      "name": "Android",
      "versions": {
        "id": "12",
        "name": "Android",
        "versions": "11.0"
      }
    }
  ]
}