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 .other suffix or ?format=other
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: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"numbers":[{"phoneNumber":"String"}]}