v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Porting Orders

Verify the verification code for a list of phone numbers

Verifies the verification code for a list of phone numbers.

post/porting_orders/{id}/verification_codes/verify

Path parameters

idstring uuid required

Porting Order id

Request body

Example request

{
  "verification_codes": [
    {
      "code": "12345",
      "phone_number": "+61424000001"
    },
    {
      "code": "54321",
      "phone_number": "+61424000002"
    }
  ]
}

Response

Successful response

Example response

{
  "data": [
    {
      "created_at": "2020-10-22T15:00:00.000Z",
      "id": "52090326-6533-4421-bcf4-bd0117cf3954",
      "phone_number": "+61424000001",
      "porting_order_id": "f28e6ecc-29a8-430b-bd0b-d93055f70604",
      "updated_at": "2020-10-22T15:00:00.000Z",
      "verified": true
    },
    {
      "created_at": "2020-10-22T15:00:00.000Z",
      "id": "cf076b8e-645b-4040-8209-543c5909775f",
      "phone_number": "+61424000002",
      "porting_order_id": "f28e6ecc-29a8-430b-bd0b-d93055f70604",
      "updated_at": "2020-10-22T15:00:00.000Z",
      "verified": false
    }
  ]
}