GET api/utils/titlecodes Authentication required
Use this method to fetch all the title codes available.
Request
No URI or Body Parameter required
Response
Returns all the title codes
Output : array of objects (See Model)Ouput Sample
[
{
"code": 5,
"label": "President",
"tag01": "CEO"
},
{
"code": 5,
"label": "President",
"tag01": "CEO"
}
]
<ArrayOfTitleCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.API.Models">
<TitleCode>
<Code>5</Code>
<Label>President</Label>
<Tag01>CEO</Tag01>
<Tag02 i:nil="true" />
<Tag03 i:nil="true" />
</TitleCode>
<TitleCode>
<Code>5</Code>
<Label>President</Label>
<Tag01>CEO</Tag01>
<Tag02 i:nil="true" />
<Tag03 i:nil="true" />
</TitleCode>
</ArrayOfTitleCode>