Light Mode
Update Customer
PUT
/customers/{customer}Last modified:Â 6 days ago
This endpoint allows you to update customer details by passing the customer
as a path parameter.
:::tip[Note]
The existing values of all skipped parameters will remain unchanged.
:::
Request
Path Params
customer
integerÂ
required
The Customer ID. List of Customers ID can be found here.
Body Params application/json
No schema defined
Example
{
"first_name": "Ahmed",
"last_name": "Ali",
"email": "[email protected]",
"gender": "female",
"birthday": "1997-06-03"
}
Request samples
Responses
Success(200)
Not Found(404)
Error Validation(422)
HTTP Code:Â 200
Content Type :Â JSONapplication/json
Data Schema
No schema defined
Example
{
"status": 200,
"success": true,
"data": {
"id": 2075683582,
"first_name": "Ahmed",
"last_name": "Ali",
"mobile": 560716138,
"mobile_code": "999",
"email": "[email protected]",
"urls": {
"customer": "https://shtara.com/profile",
"admin": "https://shtara.com/profiley"
},
"avatar": "https://i.ibb.co/jyqRQfQ/avatar-male.webp",
"gender": "male",
"city": "Riyadh",
"country": "السعودية",
"location": "null",
"updated_at": {
"date": "2020-04-02 22:43:26.000000",
"timezone_type": 3,
"timezone": "Asia/Riyadh"
},
"groups": [
11323141,
11323142
]
}
}
Last modified: 6 days ago