Field Locales

Resource Fields

Name Type Read-only Description
locale string
translation string
created_at timestamp ISO-8601 Format
updated_at timestamp ISO-8601 Format

Metadata




 
 




Actions

Retrieve field locales

GET /api/v1/locale/fields.json

Information

Allowed for Admins & Owners

Response

    {
        "status": 200,
        "data": [

        ],
        "resource": "locale_field",
        "offset": 0,
        "limit": 10,
        "total_count": 1
    }

Retrieve a field locale

GET /api/v1/locale/fields/:id.json

Information

Allowed for Admins & Owners

Response

    {
        "status": 200,
        "data": 





{
    "id": 1,

    "locale": "en-us",
    "translation": "Industry",
    "created_at": "2015-11-05T10:48:34+05:00",
    "updated_at": "2015-11-05T10:48:34+05:00",

    "resource_type": "locale_field"

    ,"resource_url": "https://brewfictus.kayako.com/api/v1/locale/fields/1"

},
        "resource": "locale_field"
    }