GET api/v1/systems

Gets a list of phone numbers that represent the different applications for which a user has access

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

200 status code will be returned with a list of phone numbers if currently logged in. 401 status code will be returned when not logged in.

DefaultPhoneNumbersResult
NameDescriptionTypeAdditional information
DefaultPhoneNumbers

The list of default phone numbers for each application the user has access to

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "DefaultPhoneNumbers": [
    "8005551212",
    "8005553434",
    "8005556767"
  ]
}

application/xml, text/xml

Sample:
<DefaultPhoneNumbersResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FreedomVoice.WebLink.Models">
  <DefaultPhoneNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>8005551212</d2p1:string>
    <d2p1:string>8005553434</d2p1:string>
    <d2p1:string>8005556767</d2p1:string>
  </DefaultPhoneNumbers>
</DefaultPhoneNumbersResult>