@wildix/xbees-users-client > GetUserPbxLinkSuggestionV1Command
GetUserPbxLinkSuggestionV1Command class
Signature:
export declare class GetUserPbxLinkSuggestionV1Command extends GetUserPbxLinkSuggestionV1Command_base
Extends: GetUserPbxLinkSuggestionV1Command_base
Example
Use a bare-bones client and the command you need to make an API call.
import { UsersClient, GetUserPbxLinkSuggestionV1Command } from "@wildix/xbees-users-client"; // ES Modules import
// const { UsersClient, GetUserPbxLinkSuggestionV1Command } = require("@wildix/xbees-users-client"); // CommonJS import
const client = new UsersClient(config);
const input = { // GetUserPbxLinkSuggestionV1Input
email: "STRING_VALUE",
};
const command = new GetUserPbxLinkSuggestionV1Command(input);
const response = await client.send(command);
// { // GetUserPbxLinkSuggestionV1Output
// suggestion: { // UserPbxLinkSuggestion
// domain: "STRING_VALUE", // required
// port: "STRING_VALUE", // required
// },
// };