GET api/utils/nationalidentificationtypecodes Authentication required

Use this method to fetch all the NationalIdentificationTypeCodes available. This will return the codes and their label

Request

No URI or Body Parameter required

Response

Returns all the ImportExportAgentCodes

Output : array of objects (See Model)

Ouput Sample

  • application/json, text/json :
  • [ { "code": 1, "label": "sample string 2", "hasVAT": true }, { "code": 1, "label": "sample string 2", "hasVAT": true } ]
  • application/xml, text/xml :
  • <ArrayOfNationalIdentificationTypeCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.Model"> <NationalIdentificationTypeCode> <Code>1</Code> <HasVAT>true</HasVAT> <Label>sample string 2</Label> </NationalIdentificationTypeCode> <NationalIdentificationTypeCode> <Code>1</Code> <HasVAT>true</HasVAT> <Label>sample string 2</Label> </NationalIdentificationTypeCode> </ArrayOfNationalIdentificationTypeCode>