API-ReferenzPOST
Ausstehende Keywords aktivieren
Aktiviert ausstehende Keywords und führt bei Bedarf ein Upgrade für mehr Kapazität durch.
POST
https://ai.redreplier.com/ai-app/api/v1/keywords/activate-pendingAktiviert ausstehende Keywords und führt bei Bedarf ein Upgrade für mehr Kapazität durch.
Bearer-Token (RedReplier-API-Token)
Authentifizierung
Sende bei jeder Anfrage ein RedReplier-API-Token als Bearer-Token. Tokens beginnen mit redreplier_; RedReplier ermittelt das Konto aus dem Token.
Authorization: Bearer redreplier_test_1234567890
Content-Type: application/jsonParameter
Dieser Endpoint hat keine Pfad- oder Query-Parameter.
Request-Body
Dieser Endpoint benötigt keinen JSON-Body.
Antwort
Gibt alle überwachten Websites mit aktualisierten Keyword-Statuswerten zurück.
websites(Website[]): Alle überwachten Websites nach der Aktivierung, einschließlich aktualisierter Keyword-Statuswerte.
Website-Objekt
id(string): Website-UUID.accountGroupId(string): Aus dem Token ermittelte Account-Gruppe.domain(string): Normalisierte Website-Domain.url(string): Website-URL.name(string | null): Anzeigename.description(string | null): Kontext für die Relevanzbewertung.createdAt, updatedAt(ISO string | null): Erstellungs- und Aktualisierungszeitpunkte im ISO-8601-Format odernull.keywords(Keyword[]): Keyword-Objekte für diese Website.
Keyword-Objekt
id(string): Keyword-UUID.websiteId(string): UUID der übergeordneten Website.value(string): Keyword-Text mit bis zu 255 Zeichen.status(string):PENDING,ACTIVE,DISABLEDoderSUSPENDED.createdAt, updatedAt(ISO string | null): Erstellungs- und Aktualisierungszeitpunkte im ISO-8601-Format odernull.
Beispielanfrage
curl -X POST https://ai.redreplier.com/ai-app/api/v1/keywords/activate-pending \
-H 'Authorization: Bearer redreplier_test_1234567890'Hinweise
Dies kann ein kostenpflichtiges Tarif-Upgrade auslösen. Rufe immer zuerst GET /keywords/activate-pending/preview auf und bestätige die Kosten.
Fehler
400 Bad Request: Ungültige Eingabe, URL, UUID, Enum, Query-Parameter oder Body.401 Unauthorized: Fehlendes oder ungültiges Bearer-Token.404 Not Found: Die Ressource existiert nicht für das Token-Konto.500 Internal Server Error: Unerwarteter Serverfehler.
Beispielanfrage (curl)
curl --request POST \
--url https://ai.redreplier.com/ai-app/api/v1/keywords/activate-pending \
--header 'Authorization: Bearer redreplier_test_1234567890'200
{
"websites": [
{
"id": "9b0f2b8d-4a76-4f59-9f0b-6b4b6f6c2a10",
"accountGroupId": "acct_7dK9pQ2",
"domain": "acmecrm.io",
"url": "https://acmecrm.io",
"name": "Acme CRM",
"description": "CRM for small agencies that need pipeline tracking and client follow-up reminders.",
"createdAt": "2026-05-22T10:15:30.000Z",
"updatedAt": "2026-05-29T14:02:11.000Z",
"keywords": [
{
"id": "73a3c9b6-3e5f-4a53-a2c6-70c5ef7f2f6d",
"websiteId": "9b0f2b8d-4a76-4f59-9f0b-6b4b6f6c2a10",
"value": "agency CRM",
"status": "ACTIVE",
"createdAt": "2026-05-22T10:16:00.000Z",
"updatedAt": "2026-05-29T14:02:11.000Z"
}
]
}
]
}