GET | /portal/search-phone-numbers |
---|
export class NodeParameterMap
{
[key:string] : NodeParameter;
public constructor(init?: Partial<NodeParameterMap>) { (Object as any).assign(this, init); }
}
export class AppSearchPhoneNumberInfo
{
public phoneNumber: string;
public constructor(init?: Partial<AppSearchPhoneNumberInfo>) { (Object as any).assign(this, init); }
}
export class AppSearchPhoneNumbersResponse
{
public numbers: AppSearchPhoneNumberInfo[];
public constructor(init?: Partial<AppSearchPhoneNumbersResponse>) { (Object as any).assign(this, init); }
}
export enum EndpointTypes
{
PhoneNumber = 'PhoneNumber',
User = 'User',
FaxNumber = 'FaxNumber',
EmailAddress = 'EmailAddress',
Unused_1 = 'Unused_1',
Unused_2 = 'Unused_2',
Unused_3 = 'Unused_3',
Unused_4 = 'Unused_4',
Unused_5 = 'Unused_5',
Team = 'Team',
Assistant = 'Assistant',
}
export class AppSearchPhoneNumbers
{
public accountId: string;
public customerId: string;
public areaCode: string;
public countryCode: string;
public postalCode: string;
public contains: string;
public distance?: number;
public phoneNumberType: EndpointTypes;
public constructor(init?: Partial<AppSearchPhoneNumbers>) { (Object as any).assign(this, init); }
}
TypeScript AppSearchPhoneNumbers DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /portal/search-phone-numbers HTTP/1.1 Host: team.evovoice.io Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <AppSearchPhoneNumbersResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.App.Portal"> <Numbers> <AppSearchPhoneNumberInfo> <PhoneNumber>String</PhoneNumber> </AppSearchPhoneNumberInfo> </Numbers> </AppSearchPhoneNumbersResponse>