Manage sources of reference data - only manually maintained data sources can be updated via this endpoint
/
Create new ignored servic...
Elevate Reference Data API (1.12)
Where possible, Elevate will manage reference data internally via incoming feeds of reliable dialstring and charge group information However, for data sources where this is not possible (e.g. for proprietary/internal data) this can be managed externally via this API
Where a usage product cannot be rated using the dialstring look up method to identify the dialled number, Elevate will rely on call-class to do this instead
- One or many dialstrings map to one reference-data-source-charge-group
- One or many call-classes map to one reference-data-source-charge-group
- One or many reference-data-source-charge-groups map to one charge-group and one reference-data-source
- One or many charge-groups map to one charge-group-category
Download OpenAPI description
Languages
Servers
https://rest.elevatebilling.com/v1
- https://rest.elevatebilling.com/v1/ignored-service-ids
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://rest.elevatebilling.com/v1/ignored-service-ids?page=1&pageSize=100&sort=id%2Cname+%7C+name%3Adesc&fields=id%2Cname&serviceId=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "id": 1, "serviceId": "Service Id" } ]
- https://rest.elevatebilling.com/v1/ignored-service-ids
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://rest.elevatebilling.com/v1/ignored-service-ids \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"serviceId": "Service Id"
}'Response
application/json
{ "id": 1, "serviceId": "Service Id" }
- https://rest.elevatebilling.com/v1/ignored-service-ids
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X HEAD \
'https://rest.elevatebilling.com/v1/ignored-service-ids?serviceId=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- https://rest.elevatebilling.com/v1/ignored-service-ids/{ignored_service_id_record_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://rest.elevatebilling.com/v1/ignored-service-ids/1 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "id": 1, "serviceId": "Service Id" }
- https://rest.elevatebilling.com/v1/ignored-service-ids/{ignored_service_id_record_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://rest.elevatebilling.com/v1/ignored-service-ids/1 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"serviceId": "Service Id"
}'Response
application/json
{ "id": 1, "serviceId": "Service Id" }
- https://rest.elevatebilling.com/v1/ignored-service-ids/{ignored_service_id_record_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://rest.elevatebilling.com/v1/ignored-service-ids/1 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'