GET api/utils/websitestatusflags Authentication required

Use this method to fetch all the website status flags available.

Request

No URI or Body Parameter required

Response

Returns all the website status flags

Output : array of objects (See Model)

Ouput Sample

  • application/json, text/json :
  • [ { "flag": 1, "description": "Active" }, { "flag": 1, "description": "Active" } ]
  • application/xml, text/xml :
  • <ArrayOfWebsiteStatusFlag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.API.Models"> <WebsiteStatusFlag> <Description>Active</Description> <Flag>1</Flag> </WebsiteStatusFlag> <WebsiteStatusFlag> <Description>Active</Description> <Flag>1</Flag> </WebsiteStatusFlag> </ArrayOfWebsiteStatusFlag>