Update customer by ID
PATCH
/extapi/v1.0/customers/{id}Mengubah data customer dengan ID tertentu.
Kolom-kolom yang hendak dirubah diisikan dalam format JSON sebagai body request.
Cukup diisikan kolom-kolom yang hendak dirubah saja, tidak harus semuanya.
ID customer yang hendak dirubah diisikan di URL sebagai path setelah /customers. Contoh: /customers/123456
API ini membutuhkan team_token sebagai parameter dan Bearer Token sebagai authentification.
Request
Path Params
id
integer
required
Query Params
team_token
string
required
Team token from api /extapi/v1.0/team_token
Example:
eyJkYl9pZCI6Mjk4MSwidGVhbV9pZCI6MjQ3Mjh9.LpZ9LEpy123lwzYjzypStjdk123
Body Params application/json
name
string
optional
name
address
string
optional
city
string
optional
phone
string
optional
ext_cust_no
string
optional
Your internal customer no
location
object
optional
lat
number
required
between -90 and 90
>= -90<= 90
Example:
-7.110383
lon
number
required
between -180 and 180
>= -180<= 180
Example:
110.473812
status
boolean
optional
true: enable, false: disabled
tags
array[string]
optional
tag
Example
{
"name": "string",
"address": "string",
"city": "string",
"phone": "string",
"ext_cust_no": "string",
"location": {
"lat": -7.110383,
"lon": 110.473812
},
"status": true,
"tags": [
"string"
]
}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{}
Last modified: 20 days ago