Allvenuz API Doc
  1. CRM
Allvenuz API Doc
  • Access Guide
  • Authentication
    • Get Signtoken
      GET
    • Get AccessToken
      POST
  • CRM
    • Get Customer List
      GET
    • Get Customer Detail
      GET
    • Update Customer
      POST
    • Archive Customer
      POST
  • Event
    • Get Event List
      GET
    • Get Event Detail
      GET
    • Update Event
      POST
    • Archive Event
      POST
  • Function
    • Get Function List
      GET
    • Get Function Detail
      GET
    • Update Function
      POST
    • Archive Function
      POST
  • Service Order
    • Get Order List
      GET
    • Get Order Detail
      GET
    • Update Order
      POST
    • Archive Order
      POST
  • Work Order
    • Get Work Order List
      POST
    • Get Work OrderDetail
      GET
    • Update Work Order
      POST
    • Cancel Work Order
      POST
  • Appendix
    • Return Code Description
  • Schemas
    • ResponseData
    • ResponseDataList
    • AccountModel
    • EventModel
    • FunctionModel
    • OrderModel
    • OrderUpdateModel
    • FilterModel
    • WorkOrderGroupModel
    • WorkOrderModel
    • OrderDtlModel
  1. CRM

Update Customer

POST
/ycrm/api/Customer/Update
Update Customer

Request

Header Params

Body Params application/json

Example
{
    "id": "VAdUPygJo2MHfl1MzFaNz",
    "idNumber": "16",
    "firstName": "Jolie",
    "lastName": "Glover",
    "name": "Donald Hettinger",
    "company": "sit aliqua id Ut",
    "gender": "male",
    "email": "Rebeka_Zieme@hotmail.com",
    "mobile": "18387567841",
    "logo": ""
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/ycrm/api/Customer/Update' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'appKey;' \
--header 'signature;' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": "VAdUPygJo2MHfl1MzFaNz",
    "idNumber": "16",
    "firstName": "Jolie",
    "lastName": "Glover",
    "name": "Donald Hettinger",
    "company": "sit aliqua id Ut",
    "gender": "male",
    "email": "Rebeka_Zieme@hotmail.com",
    "mobile": "18387567841",
    "logo": ""
}'

Responses

🟢200Success
application/json
Body

Example
{
    "StatusCode": 200,
    "Info": "Success",
    "Data": {},
    "Total": 0
}
Modified at 2025-03-21 02:39:12
Previous
Get Customer Detail
Next
Archive Customer
Built with