Skip to contentSkip to navigationSkip to topbar
On this page

Porting Webhooks


Porting Webhooks send notifications about events associated with Port In requests, Port In Phone Numbers, and Japan Port Out requests. The parent account will receive all webhooks for any port in requests created on the parent account or any subaccounts.


Webhook Properties

webhook-properties page anchor
Property nameTypeRequiredDescriptionChild properties
urlstring<uri>Optional
Not PII

The URL of the webhook configuration request


port_in_target_urlstring<uri>Optional

The complete webhook url that will be called when a notification event for port in request or port in phone number happens


port_out_target_urlstring<uri>Optional

The complete webhook url that will be called when a notification event for a port out phone number happens.


notifications_ofarray[string]Optional

A list to filter what notification events to receive for this account and its sub accounts. If it is an empty list, then it means that there are no filters for the notifications events to send in each webhook and all events will get sent.


port_in_target_date_createdstring<date-time>Optional

Creation date for the port in webhook configuration


port_out_target_date_createdstring<date-time>Optional

Creation date for the port out webhook configuration


There are two types of webhooks:

  • Port In: webhooks associated with a port in request and/or port in phone numbers.
  • Port Out: webhooks associated with a port out of a Japanese phone number. This is not supported for US phone numbers yet.

Notification Events

notification-events page anchor
ResourceEventDescription
Port In RequestPortInWaitingForSignatureA Letter of Authorization (LOA) has been generated for the port in request and is waiting to be signed.
PortInInProgressThe port in request has been submitted to the losing carrier and is progressing normally.
PortInCompletedAll phone numbers in the port in request have been canceled or successfully ported to Twilio.
PortInActionRequiredSomething happened with the port in request that requires an action. For example: a phone number has been rejected by the losing carrier.
PortInCanceledAll phone numbers in the port in request have been canceled or the port in request itself.
Port In Phone NumberPortInPhoneNumberWaitingForSignatureA Letter of Authorization (LOA) has been generated for the port in request and this number is part of it and is waiting to be signed.
PortInPhoneNumberSubmittedThe phone number has been submitted to the losing carrier for port approval.
PortInPhoneNumberPendingThe phone number port has been accepted by the losing carrier.
PortInPhoneNumberCompletedThe phone number in the port in request has been successfully ported to Twilio.
PortInPhoneNumberRejectedThe phone number has been rejected by the losing carrier.
PortInPhoneNumberCanceledThe phone number was canceled during the port in process.
Port Out Phone NumberPortOutPhoneNumberCompletedThe port out of the phone number has been successful.

Create/Update Webhook API

createupdate-webhook-api page anchor

This API allows the customer to configure a webhook to receive the notifications of a port in or port out request or update an existing one. Requests will overwrite any existing configurations.

(information)

Info

The Webhook configuration is tied to the Account used to create the Port In request or its parent Account

Configure WebhookLink to code sample: Configure Webhook
1
$ curl -X POST 'https://numbers.twilio.com/v1/Porting/Configuration/Webhook' \
2
--header 'Content-Type: application/json' \
3
--data '{
4
"port_in_target_url": "https://www.example.com/port-in",
5
"port_out_target_url": "https://www.example.com/port-out",
6
"notifications_of": [
7
"PortInWaitingForSignature",
8
"PortInInProgress",
9
"PortInCompleted",
10
"PortInActionRequired",
11
"PortInCanceled",
12
"PortInPhoneNumberWaitingForSignature",
13
"PortInPhoneNumberSubmitted",
14
"PortInPhoneNumberPending",
15
"PortInPhoneNumberCompleted",
16
"PortInPhoneNumberRejected",
17
"PortInPhoneNumberCanceled",
18
"PortOutPhoneNumberCompleted"
19
]
20
}' \
21
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

Output

1
{
2
"port_in_target_url": "https://www.webhook1.com/",
3
"port_out_target_url": "https://www.webhook2.com/",
4
"notifications_of": [
5
"PortInWaitingForSignature",
6
"PortInInProgress",
7
"PortInCompleted",
8
"PortInActionRequired",
9
"PortInCanceled",
10
"PortInPhoneNumberWaitingForSignature",
11
"PortInPhoneNumberSubmitted",
12
"PortInPhoneNumberPending",
13
"PortInPhoneNumberCompleted",
14
"PortInPhoneNumberRejected",
15
"PortInPhoneNumberCanceled",
16
"PortOutPhoneNumberCompleted"
17
],
18
"url": "https://numbers.twilio.com/v1/Porting/Configuration/Webhook"
19
}

GET https://numbers.twilio.com/v1/Porting/Configuration/Webhook

This API allows the customer to retrieve the current webhook configuration.

1
// Download the helper library from https://www.twilio.com/docs/node/install
2
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
3
4
// Find your Account SID and Auth Token at twilio.com/console
5
// and set the environment variables. See http://twil.io/secure
6
const accountSid = process.env.TWILIO_ACCOUNT_SID;
7
const authToken = process.env.TWILIO_AUTH_TOKEN;
8
const client = twilio(accountSid, authToken);
9
10
async function fetchPortingWebhookConfigurationFetch() {
11
const portingWebhookConfigurationFetch =
12
await client.numbers.v1.portingWebhookConfigurationFetch.fetch();
13
14
console.log(portingWebhookConfigurationFetch.url);
15
}
16
17
fetchPortingWebhookConfigurationFetch();

Output

1
{
2
"port_in_target_url": "https://www.example.com/port-in",
3
"port_out_target_url": "https://www.example.com/port-out",
4
"notifications_of": [
5
"PortInWaitingForSignature",
6
"PortInInProgress",
7
"PortInCompleted",
8
"PortInActionRequired",
9
"PortInCanceled",
10
"PortInExpired",
11
"PortInPhoneNumberWaitingForSignature",
12
"PortInPhoneNumberSubmitted",
13
"PortInPhoneNumberPending",
14
"PortInPhoneNumberCompleted",
15
"PortInPhoneNumberRejected",
16
"PortOutPhoneNumberCompleted"
17
],
18
"port_in_target_date_created": "2024-05-14T13:49:04Z",
19
"port_out_target_date_created": "2024-05-14T13:49:07Z",
20
"url": "https://numbers.twilio.com/v1/Porting/Configuration/Webhook"
21
}

This API allows the customer to delete a specific webhook configuration. Please note, it could take up to a few minutes for this action to take effect since the configuration may be cached.

HTTP Method: DELETE Path: https://numbers.twilio.com/v1/Porting/Configuration/Webhook/{webhook_type}

ParameterDescription
Webhook_typeIt can be PORT_IN or PORT_OUT
1
curl -X DELETE 'https://www.numbers.twilio.com/v1/Porting/Configuration/Webhook/{webhook_type}' \
2
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

HTTP status code: 204 No content


There are two types of webhooks that can be configured for porting:

  • Port In: webhooks associated with a port in request and/or port in phone numbers.
  • Port Out: webhooks associated with a port out of a Japanese phone number. Not currently supported in US porting.
(warning)

Warning

When you are creating a Webhook is very important to have a public URL that can be reached by Twilio, otherwise, the webhook will not work.

The port in webhook sends the following request body in a POST HTTP request and expects to receive an HTTP 200 OK response.

1
{
2
"port_in_request_sid": "port_in_request_sid",
3
"port_in_phone_number_sid": "port_in_phone_number_sid",
4
"last_date_updated": "2024‑01‑25 00:00:00.000",
5
"phone_number": "+1800XXXXXXX",
6
"status": "waiting_for_signature",
7
"portable": "true",
8
"not_portable_reason_code": null,
9
"not_portable_reason": null,
10
"rejection_reason": null,
11
"rejection_reason_code": null
12
}
FieldDescription
port_in_request_sidThe SID of the port in request
port_in_phone_number_sidThe SID of the port in phone number if the event is for a phone number otherwise it should be null.
last_date_updatedThe date for the last time that the status of the port in request or port in phone number was updated.
phone_numberThe phone number in e164 format if this is an event for a phone number. Otherwise, this is null.
statusThe current status of the port in request or port in phone number.
portableIf the event is for a phone number, this field is a Boolean describing whether the number is portable or not.
not_portable_reason_codeIf the number is not portable, it shows the not portable reason code.
not_portable_reasonIf the number is not portable, it shows the not portable reason.
rejection_reasonIf the number was rejected by the vendor, it shows the rejection reason.
rejection_reason_codeIf the number was rejected by the vendor, it shows the rejection reason code.

The Port Out webhook sends the following body in a POST HTTP request and it continues sending the request until it receives a 200 OK response.

1
{
2
"port_out_phone_number_sid": "port_out_phone_number_sid",
3
"last_date_updated": "2024‑01‑25 00:00:00.000",
4
"phone_number": "+1800XXXXXXX",
5
"status": "completed"
6
}
FieldDescription
port_out_phone_number_sidThe SID of the port out phone number
last_date_updatedThe date for the last time that the status of the port out phone number was updated
phone_numberThe phone number in e164 format
statusThe current status of the port out phone number

The Port In and Port Out webhook requests do up to 10 retries. The backoff interval doubles after each retry. Retries start 5 minutes after the first attempt and end after 21 hours.

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.