-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't order multiple number #63
Comments
. |
Hey @klals - looks like you closed this issue, do you still need help getting set up with number ordering? |
Hey @ajrice6713, https://dev.bandwidth.com/apis/numbers/#tag/E911/operation/CreateE911Order |
Hi @klals The ability to create an E911 order is not currently supported by this SDK. I've added this to our backlog. For the time being, I'd recommend using axios to make the request, following the example payload shown in the spec. I've provided a code snippet below.
|
Description
I Try to create order with multiple number using this library but i order only one order.
herer is my sample code snippet:-
var order = {
name:"A Test Order",
siteId: selectedSite,
existingTelephoneNumberOrderType: {
telephoneNumberList: [
{ telephoneNumber: number },
{ telephoneNumber: number }
]
}
};
numbers.Order.create(order, function (err, res) {
if (err) {
console.log("Error: " + err);
} else {
console.log("Order successfully created");
}
});
so, please give some suggestion or help to resolve this issue.
The text was updated successfully, but these errors were encountered: