For the complete documentation index, see llms.txt. This page is also available as Markdown.

Telecomsubscription

Telecom subscription events

API interface for delivering telecom subscription events

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

TelecomSubscriptionEvent

statusstringOptional

Type of event

Example: disconnected
customernumberstringOptional

Customer number identifying the debtor

Example: A123456
timestringOptional

Time when the event occurred

Example: 2026-05-06 10:00:00
descriptionstringOptional

Further description of the event

Example: Subscription closed due to unpaid debt
Responses
200

Successful operation

No content

post/telecomsubscription/event
POST /rest/telecomsubscription/event HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 136

{
  "status": "disconnected",
  "customernumber": "A123456",
  "time": "2026-05-06 10:00:00",
  "description": "Subscription closed due to unpaid debt"
}

No content

Last updated

Was this helpful?