GET api/v1/systems/{systemPhoneNumber}/presentationPhoneNumbers
Gets a list of phone numbers than can be used as the outbound caller id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
systemPhoneNumber |
The main phone number of the application to get presentation numbers |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PresentationPhoneNumbersResultName | Description | Type | Additional information |
---|---|---|---|
PresentationPhoneNumbers |
A list of numbers allowed for use as PresentationPhoneNumber when calling createCallReservation. |
Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "PresentationPhoneNumbers": [ "8005551212", "8005553434", "8005556767" ] }
application/xml, text/xml
Sample:
<PresentationPhoneNumbersResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FreedomVoice.WebLink.Models.Results"> <PresentationPhoneNumbers 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> </PresentationPhoneNumbers> </PresentationPhoneNumbersResult>