Set custom field in Javascript action

Example: Set custom field in Javascript action

Example to update a Number type Custom field

1944

Text

1954

Date

1232

URL

The URL custom field consists of two fields - the URL itself and the label.

return {
  command: "targetprocess:UpdateResource",
  payload: {
    resourceType: args.ResourceType,
    resourceId: args.ResourceId,
    fields: {
      "Url cf": { url: "https://link.com/v1", label: "Label name" }    }
  }
};

With space in the name

In case you have a custom field that consists of several words here is an example for updating a field with space in the name

return {
  command: "targetprocess:UpdateResource",
  payload: {
    resourceType: args.ResourceType,
    resourceId: args.ResourceId,
    fields: {
      "Several Words": "value"
    }
  }
};