/<instance_id>/synonyms/{synonym_id} - PUT

Method description

Update an existent synonym for the client {instance_id}.

URI Parameters

None

Requests

Body
application/json
Example application/json
{
  "enabled": false,
}

See Empathy Play API - Models for details. The request may include only the fields that are to be updated.

To remove a field (and set the default) set it to null. It is an error to remove a required field.

Responses

201 - item has been updated

Type: application/json

Example application/json
{
    "type": "catalog",
    "lang": "en",
    "enabled": false,
    "synonyms": [
        "yellow"
    ],
    "alternatives": [
        "lemon",
        "banana"
    ],
    "extra": {
        "user": "username"
    },
    "batched": false,
    "id": "586c267572c547cdcb51be9c"
    "created_on": "2017-01-03T22:32:21"
    "updated_on": "2017-01-03T22:32:21"
}

Also, a Location header will point to the URL for the boost that was just created.

400 - Invalid parameters. Error response will include details

Type: application/json

Example application/json
{
  "code": "validation_error",
  "details": [
    {
      "message": "1 is not of type 'boolean'",
      "path": ".enabled"
    }
  ],
  "message": "Error validating JSON",
  "status": "error"
}
401 - the user performing the action doesn't meet the security criteria

Type: application/json

Example application/json
{
  "code": 401,
  "details": "The server could not verify that you are authorized to access the URL requested.  You either supplied the wrong credentials (e.g. a bad password), or your browser doesn't understand how to supply the credentials required.",
  "message": "Unauthorized",
  "status": "error"
}
404 - the instance or item doesn't exist

Type: application/json

Example application/json
{
  "code": 404,
  "details": "Invalid id '123456'",
  "message": "Not Found",
  "status": "error"
}