patch
/v4/internal/key-value-stores/quotas/{address}
Update a creator quota (BackOffice only)
Path parameters
addressstringrequired
Request body
object
maxConfigsnumbermaxSizeLimitnumberallowedTypesenum[]WHITELISTBLACKLISTBOOSTREFERRERFORWARDERAPRResponses
200Response for status 200
Schema
object
ownerAddressstringrequired
maxConfigsnumberrequired
maxSizeLimitnumberrequired
allowedTypesstring[]required
createdAtstringrequired
updatedAtstringrequired
Example
{
"ownerAddress": "string",
"maxConfigs": 0,
"maxSizeLimit": 0,
"allowedTypes": [
"string"
],
"createdAt": "string",
"updatedAt": "string"
}patch
https://api.merkl.xyz/v4/internal/key-value-stores/quotas/{address}curl -X PATCH "https://api.merkl.xyz/v4/internal/key-value-stores/quotas/{address}" \
-H "Content-Type: application/json" \
-d '{ "maxConfigs": 0, "maxSizeLimit": 0, "allowedTypes": [ "WHITELIST" ] }'Current params
{
"body": {
"maxConfigs": 0,
"maxSizeLimit": 0,
"allowedTypes": [
"WHITELIST"
]
}
}Fill the required path parameter address to send.Live request — this will call https://api.merkl.xyz/ for real.