Zum Hauptinhalt springen
GET
/
webhooks-journal
/
journal-local
/
2026-03
/
status
/
{statusId}
Status abrufen
curl --request GET \
  --url https://api.hubapi.com/webhooks-journal/journal-local/2026-03/status/{statusId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "initiatedAt": 123,
  "status": "COMPLETED",
  "completedAt": 123,
  "errorCode": "INTERNAL_ERROR",
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.de/docs/llms.txt

Use this file to discover all available pages before exploring further.

Supported products

Autorisierungen

Authorization
string
header
erforderlich

The access token received from the authorization server in the OAuth 2.0 flow.

Pfadparameter

statusId
string<uuid>
erforderlich

Die eindeutige ID (UUID) des abzurufenden Status.

Antwort

successful operation

id
string<uuid>
erforderlich

Die eindeutige ID für den Momentaufnahmevorgang, dargestellt als UUID.

initiatedAt
integer<int64>
erforderlich

Der Zeitstempel, der angibt, wann der Momentaufnahmevorgang initiiert wurde, dargestellt als Unix-Zeitstempel in Millisekunden.

status
enum<string>
erforderlich

Der aktuelle Status der Momentaufnahme. Gültige Werte sind „PENDING“, „IN_PROGRESS“, „COMPLETED“, „FAILED“ und „EXPIRED“.

Verfügbare Optionen:
COMPLETED,
EXPIRED,
FAILED,
IN_PROGRESS,
PENDING
completedAt
integer<int64>

Der Zeitstempel, der angibt, wann der Momentaufnahmevorgang abgeschlossen wurde, dargestellt als Unix-Zeitstempel in Millisekunden.

errorCode
enum<string>

Ein Code, der den aufgetretenen Fehler darstellt, falls vorhanden. Mögliche Werte sind „TIMEOUT“, „VALIDATION_ERROR“, „INTERNAL_ERROR“ und „PERMISSION_DENIED“.

Verfügbare Optionen:
INTERNAL_ERROR,
PERMISSION_DENIED,
TIMEOUT,
VALIDATION_ERROR
message
string

Eine beschreibende Meldung mit zusätzlichen Informationen zum Momentaufnahmevorgang oder Fehler.

Last modified on May 11, 2026