v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
My numbers

Upload a document

Uploads a verification document for one or more phone numbers. Uploaded files must meet the following requirements:

  • Allowed formats: PNG, JPG, JPEG, TIFF, BMP, or PDF
  • Maximum file size: 10 MB
  • Files can't be password protected
  • PDF files must not contain digital signatures
post/v1/numbers/papers

Response

Returns the uploaded documents and their review status.

idinteger required

Unique identifier of the uploaded document

allow_replaceboolean required

Indicates whether the document can be replaced. Only documents with rejected status can be replaced.

did_numberstring required

The phone number the document was uploaded for

doc_content_typestring required

The uploaded content type identified by the platform

doc_file_namestring required

The uploaded document name

doc_type_id1 | 2 | 3 required

Specifies the type of document required to activate the phone number. Possible values are: 1 - Proof of identity, 2 - Proof of address, 3 - Proof of business registration.

statusstring required

Status of the uploaded document. Can be either approved, pending, or rejected

urlstring required

A link to the uploaded document

Example response

[
  {
    "id": 423,
    "allow_replace": false,
    "did_number": "12565378257",
    "doc_content_type": "image/png",
    "doc_file_name": "Copy of ID.png",
    "doc_type_id": 1,
    "status": "approved",
    "url": "https://api.wavix.com/v1/numbers/24882/papers/1"
  }
]