api:sbc:rule:update
Table of Contents
API : SBC Rule Update
Introduction
This request will update an outbound routing rule.
Request
| URL | https://api.telecomx.dk/sbc/rule/RULE_ID | ||
|---|---|---|---|
| Method | GET | ||
| Access level | RESELLER_ADMIN with FINANCE feature, or ADMIN. | ||
| Param | RULE_ID | Id of the rule (24-char hex string). | |
| Body | condition | String | Condition to be met for rule to be applied: PREFIX - Prefix of full E.164 number, e.g. +462 ANUMBER - Callers number in E.164 format, e.g. +4570305050 CUSTOMER - Id of calling customer, e.g. 123457890ABCDEF12345678 DKCPS - CPS code of destination service operator, e.g. 01011 |
| peer | String | Id of the peer to send outbound calls to if the rule is matched. | |
| note | String | Note about the rule. | |
Query examples
{
condition: '+46222'
}
Response
The response is a rule object.
| Rule object (JSON) | ||
|---|---|---|
| _id | Id | Id of the rule. |
| type | String | Type of rule: PREFIX, ANUMBER, CUSTOMER, DKCPS. |
| condition | String | Condition to be met for rule to be applied: PREFIX - Prefix of full E.164 number, e.g. +462 ANUMBER - Callers number in E.164 format, e.g. +4570305050 CUSTOMER - Id of calling customer, e.g. 123457890ABCDEF12345678 DKCPS - CPS code of destination service operator, e.g. 01011 |
| peer | String | Id of the peer to send outbound calls to if the rule is matched. |
| note | String | Note about the rule. |
Note that properties holding no value may be omitted from the object.
Response example
{ _id: '123457890ABCDEF12345678', type: 'PREFIX', condition: '+46222', peer: 'Telenor', note: 'Least cost routing' }
Errors
| Error code | Message | Description |
|---|---|---|
| 400 | bad_request | Id noty found in request URI |
| 404 | id | Rule not found |
| 422 | peer | Peer is invalid |
| 422 | condition | Prefix is invalid |
| 422 | condition | Customer not found |
| 422 | condition | CPS not found |
| 404 | peer | Peer not found |
| 403 | access_denied | Insufficient access level |
| 500 | internal_error | <Unspecified> |
api/sbc/rule/update.txt · Last modified: 2023/10/30 21:39 by Per Møller