RSS-Automatisierungen
GET https://textbridge.io/api/rss-automations/
curl --request GET \
--url 'https://textbridge.io/api/rss-automations/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://textbridge.io/api/rss-automations/' \
--header 'Authorization: Bearer {api_key}' \
| Parameter | Details | Beschreibung |
|---|---|---|
| page | Optional Ganzzahl | Die Seitenzahl, von der Du Ergebnisse möchtest. Standardmäßig 1. |
| results_per_page | Optional Ganzzahl | Wie viele Ergebnisse möchtest Du pro Seite? Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standardmäßig ist 25. |
{
"data": [
{
"id": 1,
"user_id": 1,
"device_id": 1,
"sim_subscription_id": 1,
"rss_url": "https://example.com/feex.xml",
"name": "Example",
"content": "Sample message",
"settings": {
"check_interval_seconds": 60,
"items_count": 3,
"campaigns_delay": 15,
"unique_item_identifier": "url",
},
"segment": "all",
"is_enabled": true,
"total_sent_sms": 0,
"total_pending_sms": 0,
"total_failed_sms": 0,
"last_sent_datetime": null,
"last_datetime": null,
"datetime": "2025-12-06 03:49:44",
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://textbridge.io/api/rss-automations?page=1",
"last": "https://textbridge.io/api/rss-automations?page=1",
"next": null,
"prev": null,
"self": "https://textbridge.io/api/rss-automations?page=1"
}
}
GET https://textbridge.io/api/rss-automations/{rss_automation_id}
curl --request GET \
--url 'https://textbridge.io/api/rss-automations/{rss_automation_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://textbridge.io/api/rss-automations/{rss_automation_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"user_id": 1,
"device_id": 1,
"sim_subscription_id": 1,
"rss_url": "https://example.com/feex.xml",
"name": "Example",
"content": "Sample message",
"settings": {
"check_interval_seconds": 60,
"items_count": 3,
"campaigns_delay": 15,
"unique_item_identifier": "url",
},
"segment": "all",
"is_enabled": true,
"total_sent_sms": 0,
"total_pending_sms": 0,
"total_failed_sms": 0,
"last_sent_datetime": null,
"last_datetime": null,
"datetime": "2025-12-06 03:49:44",
}
}
POST https://textbridge.io/api/rss-automations
| Parameter | Details | Beschreibung |
|---|---|---|
| rss_url | Optional Zeichenkette | - |
| content | Erforderlich Zeichenkette | - |
| device_id | Erforderlich Ganzzahl | - |
| sim_subscription_id | Erforderlich Ganzzahl | - |
| check_interval_seconds | Optional Zeichenkette | Erlaubte Werte: 900, 1800, 3600, 21600, 43200, 86400, 259200 (Sekunden) |
| items_count | Optional Zeichenkette | Erlaubte Werte: 1 - 100 |
| campaigns_delay | Optional Zeichenkette | Erlaubte Werte: 5 - 1440 |
| unique_item_identifier | Optional Zeichenkette | Erlaubte Werte: link, pubdate |
| is_enabled | Optional Boolesch | - |
curl --request POST \
--url 'https://textbridge.io/api/rss-automations' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example name' \
--form 'content=Hello world' \
--form 'device_id=1' \
--form 'sim_subscription_id=1' \
--form 'segment=all' \
--form 'rss_url=https://example.com/feed.xml' \
--url 'https://textbridge.io/api/rss-automations' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example name' \
--form 'content=Hello world' \
--form 'device_id=1' \
--form 'sim_subscription_id=1' \
--form 'segment=all' \
--form 'rss_url=https://example.com/feed.xml' \
{
"data": {
"id": 1
}
}
POST https://textbridge.io/api/rss-automations/{rss_automation_id}
| Parameter | Details | Beschreibung |
|---|---|---|
| rss_url | Optional Zeichenkette | - |
| name | Optional Zeichenkette | - |
| content | Optional Zeichenkette | - |
| device_id | Optional Ganzzahl | - |
| sim_subscription_id | Optional Ganzzahl | - |
| check_interval_seconds | Optional Zeichenkette | Erlaubte Werte: 900, 1800, 3600, 21600, 43200, 86400, 259200 (Sekunden) |
| items_count | Optional Zeichenkette | Erlaubte Werte: 1 - 100 |
| campaigns_delay | Optional Zeichenkette | Erlaubte Werte: 5 - 1440 |
| unique_item_identifier | Optional Zeichenkette | Erlaubte Werte: link, pubdate |
| is_enabled | Optional Boolesch | - |
curl --request POST \
--url 'https://textbridge.io/api/rss-automations/{rss_automation_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example name' \
--form 'content=Hello world' \
--form 'device_id=1' \
--form 'sim_subscription_id=1' \
--form 'segment=all' \
--form 'rss_url=https://example.com/feed.xml' \
--url 'https://textbridge.io/api/rss-automations/{rss_automation_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example name' \
--form 'content=Hello world' \
--form 'device_id=1' \
--form 'sim_subscription_id=1' \
--form 'segment=all' \
--form 'rss_url=https://example.com/feed.xml' \
{
"data": {
"id": 1
}
}
DELETE https://textbridge.io/api/rss-automations/{rss_automation_id}
curl --request DELETE \
--url 'https://textbridge.io/api/rss-automations/{rss_automation_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://textbridge.io/api/rss-automations/{rss_automation_id}' \
--header 'Authorization: Bearer {api_key}' \