Skip to content

ODataService Draft Edit

DraftEdit action is used to create a new draft from an active entity in the specified OData service.

ODataService Draft Edit Properties

Property Type Required
Headers object Optional
Target LinkQueryTarget Optional
_Type const Optional

Headers

Custom headers to be included as part of the request to the OData Service in key/value pair format

  • type: object

Target

This action can only be executed on a single entity. therefore the Target specifier must be configured to return only 1 entity, otherwise this action will fail


_Type

  • type: const

The value of this property must be equal to:

"Action.Type.ODataService.DraftEnabled.Edit"

Any following options needs to be fulfilled.

Option 1


Action Result

Refer to the MDK Guide to understand what an action result is.

The success ActionResult of this action is a JS object containing the entity. The failure ActionResult is an error message.


Examples

{
  "_Type": "Action.Type.ODataService.DraftEnabled.Edit",
  "Target": {
    "Service": "/MyMDKApp/Services/MyOData.service",
    "EntitySet": "Customers",
    "ReadLink": "{@odata.readLink}"
  }
}