Example of Record Modify

Consider the following example where a record with Product ID "record1" and ID Extension "record1" is modified in the repository named "Company":

Example - Request

{
  "record": {
    "repositoryName": "Company",
    "productIdExt": "record1",
    "productId": "record1",
    "attributes": [
      {
        "name": "Name",
        "value": "TIBCO"
      },
      {
        "name": "Address",
        "value": "UK"
      },
      {
        "name": "Street",
        "multivalues": [
          "11th St",
          "Rockford"
        ],
        "multivalue": true
      },
      {
        "name": "Website",
        "value": "https://in.yahoo.com/"
      },
      {
        "name": "Rating",
        "value": "10.10"
      },
      {
        "name": "CompanySource",
        "value": "IT SOURCE"
      },
      {
        "name": "CompanyRating",
        "value": "9"
      }
    ]
  }
}

Example - Response

The response returns the message that the record was successfully modified.

        {
   "responseMessages": [   {
      "code": "SVC-11025",
      "message": "Service 'VALIDATE_PROCESS' executed successfully.",
      "type": "Info"
   }],
   "records": [],
   "success": true
}