Update a Customer Data


                https://api.ocamba.com/v1/hood/customer-data/{id}
            

Updates the specific Customer Data by setting the values of the parameters passed. Any parameters not provided will be left unchanged

Rate limits:

Burst: 10/s
Steady: 150/m


Name
Description
idstringrequired
Unique resource identifier.


Example: 12345


Name
Description
pi_datanumber (integer)
Indicates whether the property contains Personally Identifiable Information (PII). If set to 1, values will be encrypted and access will be restricted to users with appropriate permissions.


Example: 1

Possible values: 0 | 1

204 - No Content
Arrow

400 - Bad Request
Arrow

500 - Internal Server Error
Arrow

note
1 At least one of the updatable fields should be sent via HTTP body in order to change the current state of the customer list.
tip
1 If you don't know the customer data id, list the customer data to find it.

request Arrow
{
    "pi_data": 1,
}
400 Arrow
{
  "code": 400,
  "title": "Bad request.",
  "message": "The request body is not valid.",
  "trace_id": "99a84211-f73d-4ff8-acdf-eb3e06bb9d62"
}
{
  "code": 500,
  "title": "Internal server error.",
  "trace_id": "99a84211-f73d-4ff8-acdf-eb3e06bb9d62"
}