RESTful-Drupal / restful

RESTful best practices for Drupal
https://drupal.org/project/restful
419 stars 173 forks source link

How do I change the created date when I create a node? #1035

Open v1talii-dev opened 6 years ago

v1talii-dev commented 6 years ago

I use this code:

protected function publicFields() {
  $public_fields = parent::publicFields();
  $public_fields['created'] = [
    'property' => 'created',
  ];
}

But i get error:

{
    "type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
    "title": "Property created cannot be set.",
    "status": 400,
    "detail": "Bad Request",
    "instance": ""
}