Skip to main content
GET
/
subscriptions
/
{subscriptionId}
/
in-porting
{
  "msisdn": "+15551234567",
  "status": "PENDING",
  "direction": "INBOUND",
  "scheduledAt": "2023-12-25",
  "details": {
    "accountNumber": "<string>",
    "passcode": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "address": {
      "street1": "500 S Main St",
      "street2": "Apt 1",
      "city": "Natick",
      "zip": "01701",
      "country": "US",
      "state": "CA",
      "region": "<string>",
      "attention": "<string>"
    }
  },
  "updatedAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-Key
string
header
required

An API key that grants access to the Connect API. You can create and manage API keys in the portal.

Path Parameters

subscriptionId
string
required

The unique identifier of the subscription.

Response

Porting information retrieved successfully.

A request to port a number into or out of the system.

msisdn
string

The phone number to be ported, in E.164 format.

Example:

"+15551234567"

status
enum<string>

Current status of the porting process.

Available options:
PENDING,
IN_PROGRESS,
SCHEDULED,
COMPLETED,
FAILED
direction
enum<string>

The direction of the number porting, either inbound (to us) or outbound (from us).

Available options:
INBOUND,
OUTBOUND
scheduledAt
string<date>

The date when the porting is scheduled to occur.

details
object

description: Detailed information required for the porting process, varying by country and provider.

  • USPortingDetails
  • SwedishPortingDetails
updatedAt
string<date-time>

The timestamp of the last update to the porting request.

createdAt
string<date-time>

The timestamp when the porting request was created.

I