Skip to main content
PATCH
/
phone-service
/
verification
/
{referenceId}
Verification Match
curl --request PATCH \
  --url https://sandbox-umbrella-api.azurewebsites.net/api/services/phone-service/verification/{referenceId} \
  --header 'Content-Type: application/json' \
  --data '{
  "securityFactor": "12345"
}'
{
  "status": true,
  "data": {
    "status": {
      "code": 3900,
      "description": "Verified"
    }
  }
}
For a usage description of the Verification Match Service, please refer to the Verification Match page.

Endpoint

PATCH /phone-service/verification/{referenceId}

Swagger

Path Parameters

referenceId
string
required

Unique identifier for the verification process.

Body

application/json
securityFactor
string
required

The OTP provided by the end user (3–10 digits).

Example:

"12345"

Response

Verification result.

status
boolean
required

Indicates whether the request was successful (true or false).

Example:

true

data
object
required
I