Get assigned additional services
Retrieve additional services assigned to your account. In the API context, "additional services" refers to optional subscription-based features that are not part of the core voice or messaging product modules and do not have a dedicated API section. These services may include extra platform subscriptions such as VPN access, experimental features, or other value-added services that are enabled per customer account. Please, contact support for more details if you are interested. Important clarification: This endpoint does NOT include product-level "Reputation" or "Lead" services, which are exposed separately under the Reputation API section. Additional services are managed independently and may vary per customer depending on enabled subscriptions. This endpoint allows filtration and returns data with pagination.
Query Parameters
Optional parameter. Allows to filter out additional services, that were activated after the given date. Format of date is 2026-01-30T00:00:00.000000Z.
Optional parameter. Allows to filter out additional services, that were activated before the given date. Format of date is 2026-01-30T00:00:00.000000Z.
Accepts a list of subscription frequencies to filter by. If the list is empty, this filter will be ignored.
Accepts a list of additional services unique ids to filter by. If the list is empty, this filter will be ignored.
Pagination parameters. Accepts page number. Pagination starts on page=1. If parameter is not provided, the default value of 1 will be set.
Pagination parameter. Accepts the size of page for pagination. Minimal page size is 1. If parameter is not provided, the default value of 10 will be set.
Optional parameter that allows to search Additional Services by title and/or comment values. The search operation is partial.
Ordering parameter. Defines by which field the data will be sorted. If parameter is not provided, will be used entity's default ordering. To use entity's default sorting, pass _default as value.
"_default" | "id" | "service_name" | "title" | "comment" | "billing_period" | "frequency" | "next_payment_at" | "activated_at" | "status" | "activation" | "amount_one_time" | "monthly" | "amount_subscription"Ordering parameter. Defines the order of sorting (asc or desc). If parameter is not provided, will be used entity's default ordering.
"asc" | "desc"Accepts a list of subscription statuses to filter by. If the list is empty, this filter will be ignored.
Header Parameters
Your API token
Response Body
application/json
application/json
application/json
curl -X GET "https://dev-refactor-api-e.voipenv.uk/api/v1/services/additional" \ -H "Authorization: string"{
"data": [
{
"activated_at": "string",
"activation": 0,
"comment": "string",
"frequency": "monthly",
"id": 0,
"monthly": 0,
"next_payment_at": "string",
"subscription_status": "disabled",
"title": "string"
}
],
"page": 0,
"page_size": 0,
"total": 0,
"total_pages": 0
}{
"code": 0,
"error_details": {
"property1": [
"string"
],
"property2": [
"string"
]
},
"message": "string",
"request_id": "string",
"status": "error"
}{
"code": 0,
"error_details": {
"property1": [
"string"
],
"property2": [
"string"
]
},
"message": "string",
"request_id": "string",
"status": "error"
}