GET api/categories/altinternational/{languageCode} Authentication required
Use this method to fetch all the International categories available. This will return the categories and their descriptions in the specified language. Note that some NACE categories might not have a description in some languages
Request
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
languageCode |
Language represented by its ISO 639-1 Code (2 chars long) |
string |
Required |
Response
Returns all the International categories in a specific language
Output : array of objects (See Model)Ouput Sample
[
{
"code": "5610",
"name": "Restaurants and mobile food service activities",
"language": "EN",
"type": "AltInternational",
"level": 0
},
{
"code": "5610",
"name": "Restaurants and mobile food service activities",
"language": "EN",
"type": "AltInternational",
"level": 0
}
]
<ArrayOfAltInternationalCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<AltInternationalCategory>
<Code>5610</Code>
<CountryCode i:nil="true" />
<Language>EN</Language>
<Level>0</Level>
<Name>Restaurants and mobile food service activities</Name>
<ParentCode i:nil="true" />
<Type>AltInternational</Type>
</AltInternationalCategory>
<AltInternationalCategory>
<Code>5610</Code>
<CountryCode i:nil="true" />
<Language>EN</Language>
<Level>0</Level>
<Name>Restaurants and mobile food service activities</Name>
<ParentCode i:nil="true" />
<Type>AltInternational</Type>
</AltInternationalCategory>
</ArrayOfAltInternationalCategory>