POST v1/user/register/delete

MOBILE - Register new user to system if given cell number is not in DB, cell number must have 10 digits long.

Request Information

URI Parameters

None.

Body Parameters

RegisterUserDeleteRequestModel
NameDescriptionTypeAdditional information
user_cell_number

string

Required

Data type: Text

String length: inclusive between 10 and 10

user_password

string

Required

Data type: Password

String length: inclusive between 6 and 100

Request Format

application/json, text/json

Sample:
{
  "user_cell_number": "sample string 1",
  "user_password": "sample string 2"
}

Response Information

Resource Description

MOBILE - Register new user to system if given cell number is not in DB, cell number must have 10 digits long.

BaseMetaResultModel
NameDescriptionTypeAdditional information
meta

Basic meta information for the operation result

MetaModel

None.

Response Format

application/json, text/json

Sample:
{
  "meta": {
    "status_code": 1,
    "status_message": "sample string 2"
  }
}