GET api/utils/importexportagentcodes Authentication required

Use this method to fetch all the ImportExportAgentCode 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": "sample string 1", "label": "sample string 2" }, { "code": "sample string 1", "label": "sample string 2" } ]
  • application/xml, text/xml :
  • <ArrayOfImportExportAgentCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.Model"> <ImportExportAgentCode> <Code>sample string 1</Code> <Label>sample string 2</Label> </ImportExportAgentCode> <ImportExportAgentCode> <Code>sample string 1</Code> <Label>sample string 2</Label> </ImportExportAgentCode> </ArrayOfImportExportAgentCode>