Get Locales
post
/config/sim/v1/setup/getLocales
Request
Supported Media Types
- application/json
- multipart/form-data
A request body to get the list of locales
Root Schema : LocaleGetRequestBody
Type:
object
The input Body model that needs to be given.
Show Source
-
include:
string
Objects included in response
-
includeAll:
string
This can take 2 values: basic or detailed. If 'basic' is specified, The response contains all the properties of the object except
Ext values. If 'detailed' is specified, The response contains all the properties of the object. Example:detailed
-
languages:
string
If specified, limits translated strings returned
-
limit:
integer
If using paging, number of results returned in this page.
-
offset:
integer
Starting resource record index. Not required if paging parameters are not supported
-
orderBy:
string
Sorts the response by the specified field name and sort order.
-
searchCriteria:
string
Search criteria to filter results based on field value
Response
Supported Media Types
- application/json
200 Response
A collection of Locales in an organization.
Root Schema : LocaleGetResponse
Type:
Show Source
object
-
count(required):
integer
Current response record count.Example:
9
-
hasMore(required):
boolean
Flag indicating if there are more objects to fetch.Example:
true
-
items(required):
array items
Array of Locale objects of the organization.
-
limit(required):
integer
Server page sizeExample:
10
-
offset(required):
integer
Starting resource record indexExample:
0
-
totalResults(required):
integer
Total number of rows (excluding the paging parameters)Example:
100
Nested Schema : items
Type:
array
Array of Locale objects of the organization.
Show Source
-
Array of:
object LocaleItemResponseBody
Model for Locale Object
Nested Schema : LocaleItemResponseBody
Type:
object
Model for Locale Object
Show Source
-
decimalSeparator:
string
Decimal Separator for the LocaleExample:
,
-
name:
object name
Additional Properties Allowed: additionalPropertiesname of the Locale
-
objectNum:
integer
Object Number of the LocaleExample:
1
-
thousandsSeparator:
string
Thousands Separator for the LocaleExample:
.
Nested Schema : name
Type:
object
Additional Properties Allowed
Show Source
name of the Locale
Example:
{
"en-US":"Enterprise",
"de-DE":"Unternehmen",
"es-MX":"Empresa"
}
400 Response
400 Bad Request
Root Schema : ErrorDetails
Type:
object
Response body when the request returns an error.
Show Source
-
detail(required):
string
A short, human-readable summary of the problem.Example:
Specified Data is invalid
-
errorDetails(required):
string
A human-readable explanation specific to this occurrence of the problem.Example:
Entity Does Not Exist
-
o:errorCode(required):
integer
Error code of the problemExample:
55223
-
status(required):
integer
HTTP status code.Example:
400
-
title(required):
string
A short, human-readable summary of the problem type.Example:
VALIDATION ERROR
-
type(required):
string
A URI reference that identifies the problem type. When this member is not present, its value is assumed to be "about:blank".Example:
http://www.abc.org/xyz.html
404 Response
404 Requested resource not found