get
GET /api/v1/update/UpdatePhoneInfo/GetApplicantPhones HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "phoneNumber": "text",
    "isDefault": true
  }
]
post
POST /api/v1/update/UpdatePhoneInfo/SendOTP HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 0
}
post
POST /api/v1/update/UpdateRequest/VerifyPassword HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 36

{
  "password": "text",
  "updateStepId": 1
}
{
  "status": 0
}
post
POST /api/v1/update/UpdatePhoneInfo/Add HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 36

{
  "code": "text",
  "phoneNumber": "text"
}
{
  "id": 1
}
post
POST /api/v1/update/UpdatePhoneInfo/Archieve HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 22

{
  "phoneNumber": "text"
}
{
  "status": 0
}
post
POST /api/v1/update/UpdatePhoneInfo/Update HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 67

{
  "id": 1,
  "code": "text",
  "phoneNumber": "text",
  "oldPhoneNumber": "text"
}
{
  "id": 1
}
post
POST /api/v1/update/UpdatePhoneInfo/ValidateOTP HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 45

{
  "id": 1,
  "otp": "text",
  "oldPhoneNumber": "text"
}
{
  "status": 0
}