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 int64Logical address of the forward
success booleanOperation status
extended_info stringPossible 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 string
error type/info
{
"error": "Wrong JSON body"
}
{
"error": "Wrong JSON body"
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error string
error message
{
"error": "Log In"
}
{
"error": "Log In"
}
Loading...