insert new user
POST
/v1/usersRequest
Body Params application/json
id
object
optional
name
object
optional
family
object
optional
national_code
object
optional
city_id
object
optional
province_id
object
optional
gender
object
optional
sso_id
object
optional
cell
object
optional
Example
{
"id": {},
"name": {},
"family": {},
"national_code": {},
"city_id": {},
"province_id": {},
"gender": {},
"sso_id": {},
"cell": {}
}
Request samples
Responses
Get Inserted user information(200)
Get Inserted user information
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
users
array[object (authenticated_user) {7}]
optional
id
object
optional
name
object
optional
family
object
optional
gender
object
optional
sso_id
object
optional
cell
string | null
optional
cell of the user
Example:
913000000
national_code
string | null
optional
national_code of the user
Example:
124666554
Example
{
"users": [
{
"id": {},
"name": {},
"family": {},
"gender": {},
"sso_id": {},
"cell": "913000000",
"national_code": "124666554"
}
]
}
Last modified: 7 months ago