# Request to link phone number to user as new method of authorization 1. Call the method /users/me/phone_link/request 2. Put your phone number in the body of the request 3. Then u will receive the sms code 4. Call method /users/me/phone_link/confirm with the code Endpoint: POST /users/me/phone_link/request Version: v1 Security: Bearer ## Request fields (application/json): - `phone_number` (string, required) Example: "+1234567890" ## Response 200 fields (application/json): - `operation_id` (string, required) ID of the confirmation code. ## Response 400 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information. ## Response 401 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information. ## Response 404 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information. ## Response 422 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information.