View Language


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

Retrieves the details of a Language if a valid identifier was provide


Name
Description
idstringrequired
Unique id of the language. Example - ar.


Example: ar

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


200 - OK
Arrow
Name
Description
items[ language ]
An array of all created items.
Language
Name
Description
codestring
Two-letter, lowercase language code.


Example: ar

code3string
Three-letter, lowercase language code.


Example: ara

idstring
A unique identifier generated by the Ocamba platform.


Example: ar

namestring
Language name.


Example: Arabic

totalinteger
A total number of items.


Example: 1
tip
1 If you don't know the language id, list the languages to find it.
200 Arrow
{
  "total": 1,
  "items": [
    {
      "id": "ar",
      "code": "ar",
      "code3": "ara",
      "name": "Arabic"
    }
  ]
}