Update a model with data given in the request body.

PUT /data/custom-actions/{instance_id}

JSON format is expected. Model performs the validation automatically when fields are modified.

Path parameters

Body

Responses

PUT /data/custom-actions/{instance_id}
curl \
 -X PUT http://localhost:8080/api/data/custom-actions/{instance_id} \
 -H "Authorization: $API_KEY" \
 -d '{"data":["string"],"total":42,"nb_pages":42,"limit":42,"offset":42,"page":42}'
Request example
{
  "data": [
    "string"
  ],
  "total": 42,
  "nb_pages": 42,
  "limit": 42,
  "offset": 42,
  "page": 42
}