cdp.connection.refresh

The cdp.connection.refresh command is used to refresh a connection's data.

TR50 Request

{
  "cmd" : {
    "command": "cdp.connection.refresh",
    "params": {
      "id": "5592d0c4fde00053074e0107",
      "priority": "low"
    }
  }
}

Request Parameters

Name Type Required Description

priority

String

The priority of the refresh: "low", "medium", or "high" (Defaults to medium.)

*One of the following Identifier parameter is required.
ids Array Yes* An array of connection ids that will be tagged
esn Array An array of connection esns that will be tagged
iccid Array An array of connection iccids that will be tagged
imei Array An array of connection imeis that will be tagged
imsi Array An array of connection imsis that will be tagged
meid Array An array of connection meids that will be tagged
msisdn Array An array of connection msisdns that will be tagged

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
  }
}