cdp.connection.tag.delete

The cdp.connection.tag.delete command removes the specified tag(s) from all specified connections.

TR50 Request

{
  "cmd": {
    "command": "cdp.connection.tag.delete" ,
    "params": {
      "id": [
        "5413264000ad5e898b48408e",
        "548408413264de05e898b00a"
      ],
      "tags": [
        "tag1",
        "tag2"
      ]
    }
  }
}

Request Params

Name Type Required Description
ids Array Yes* An array of connection ids that will be deleted
esn Array An array of connection esns that will be deleted
iccid Array An array of connection iccids that will be deleted
imei Array An array of connection imeis that will be deleted
imsi Array An array of connection imsis that will be deleted
meid Array An array of connection meids that will be deleted
msisdn Array An array of connection msisdns that will be deleted
*One of the above Identifier parameter is required.
tags Array Yes The array of tags to be removed from the specified connection(s).

TR50 Response

If the command is sent successfully a success message is returned. Otherwise, an error and error message will be returned.

 {
  "cmd": {
    "success": true
  }
}

API will return success if the tag requested to delete is already removed.