docs
  1. Admin Api
  2. Resources
  3. Custom Data Configuration
  4. Update Custom Data Configuration

Update custom data configuration

Update an existing custom data config

Rate Limit: 1000 Max attempts within 1 minute.

Path Parameters

ParameterDetails
entity
  • required
string
Example:
brand

Request body

required
ParameterDetails
properties
  • required
object
Example:
{
  "name": "score",
  "type": "number",
  "defaultValue": 1,
  "inherit": false,
  "rules": {
    "required": true
  }
}
name
string
  • MinLength: 1
Pattern:
^[A-Za-z_-][A-Za-z0-9_-]*$
Example:
score
type
string
  • MinLength: 1
Example:
object
Enum:
string
number
boolean
json
isLocalized
boolean
Example:
true
defaultValue
  • nullable
Example:
100
inherit
boolean
Example:
true
rules
object

Responses

200
Custom Data Config was successfully updated.
application/json
Success
required
Array of object
400
Bad Request
application/json
Error
401
Unauthorized
application/json
Error
404
Not Found
application/json
Error
409
Conflict error
application/json
Error
PUT/custom-data-configs/{entity}

Request samples

Response samples

200
CustomDataConfig:
Content type: application/json
Provide Feedback