Delete multiple call forward rules with link_id
Delete multiple call forward rules with link_id
- This endpoint is used by Link management system
- application/json
Request Body
- link_ids int64[]List of Link IDs 
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Deleted
- Not found
Schema
- result object[]- List of operation statuses link_id int64- Logical address of the forward success boolean- Operation status extended_info string- Possible values: [ - created,- updated,- deleted,- entity_not_found]- Operation information 
{
  "result": [
    {
      "link_id": 101,
      "success": true,
      "extended_info": "created"
    }
  ]
}
{
  "result": [
    {
      "link_id": 101,
      "success": true,
      "extended_info": "deleted"
    }
  ]
}
{
  "result": [
    {
      "link_id": 101,
      "success": false,
      "extended_info": "entity_not_found"
    }
  ]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- error stringerror type/info 
{
  "error": "Wrong JSON body"
}
{
  "error": "Wrong JSON body"
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error stringerror message 
{
  "error": "Log In"
}
{
  "error": "Log In"
}
Loading...