setting/language/get
POST
/setting/language/getThis returns the list of languages in the Equotix One account.
Request
Body Params application/json
domain
string
required
The domain you are assigned to authenticate your Equotix One account.
api_key
string
required
The email address assigned to the user account in your Equotix One.
auth_timestamp
integer
required
The unix timestamp used to sign this API request.
auth_signature
string
required
The calculated signature for this API request.
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string"
}
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
error
array[string]
optional
Returns only if there is an error.
languages
array [object {3}]
optional
The list of languages.
language_id
integer
required
The language ID.
code
string
required
The language ISO code.
name
string
required
The language name.
Example
{
"error": [
"string"
],
"languages": [
{
"language_id": 0,
"code": "string",
"name": "string"
}
]
}
Last modified: 4 months ago