Bandwidth · Schema

PortInResponse

Response containing port-in request details

CommunicationsCPaaSVoiceMessagingTelephonySMSMFA

Properties

Name Type Description
portInId string The unique identifier for the port-in request
status string The current status of the port-in request
requestedFocDate string The requested FOC date
actualFocDate string The actual FOC date assigned by the carrier
View JSON Schema on GitHub

JSON Schema

phone-numbers-port-in-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/phone-numbers-port-in-response-schema.json",
  "title": "PortInResponse",
  "description": "Response containing port-in request details",
  "type": "object",
  "properties": {
    "portInId": {
      "type": "string",
      "description": "The unique identifier for the port-in request"
    },
    "status": {
      "type": "string",
      "description": "The current status of the port-in request"
    },
    "requestedFocDate": {
      "type": "string",
      "format": "date",
      "description": "The requested FOC date"
    },
    "actualFocDate": {
      "type": "string",
      "format": "date",
      "description": "The actual FOC date assigned by the carrier"
    }
  }
}