GET api/utils/languages Authentication required

Use this method to fetch all the languages available.

Request

No URI or Body Parameter required

Response

Returns all the languages

Output : array of objects (See Model)

Ouput Sample

  • application/json, text/json :
  • [ { "isoCode": "EN", "name": "English", "isoCode2": "ENG" }, { "isoCode": "EN", "name": "English", "isoCode2": "ENG" } ]
  • application/xml, text/xml :
  • <ArrayOfLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.API.Models"> <Language> <IsoCode>EN</IsoCode> <IsoCode2>ENG</IsoCode2> <Name>English</Name> </Language> <Language> <IsoCode>EN</IsoCode> <IsoCode2>ENG</IsoCode2> <Name>English</Name> </Language> </ArrayOfLanguage>