providers_google_workspace_sync_status_retrieve
GET/providers/google_workspace/:id/sync/status/
Get provider's sync status
Request
Path Parameters
id integerrequired
A unique integer value identifying this Google Workspace Provider.
Responses
- 200
- 400
- 403
- 404
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
is_running booleanrequired
tasks
object[]
required
uuid uuidrequired
name stringrequired
full_name stringrequired
Get full name with UID
uid string
description stringrequired
start_timestamp date-timerequired
finish_timestamp date-timerequired
duration doublerequired
status SystemTaskStatusEnum (string)required
Possible values: [unknown
, successful
, warning
, error
]
messages
object[]
required
timestamp date-timerequired
log_level LogLevelEnum (string)required
Possible values: [critical
, exception
, error
, warn
, warning
, info
, debug
, notset
]
logger stringrequired
event stringrequired
attributes
object
required
expires date-timenullable
expiring boolean
{
"is_running": true,
"tasks": [
{
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"full_name": "string",
"uid": "string",
"description": "string",
"start_timestamp": "2024-09-27T14:26:18.533Z",
"finish_timestamp": "2024-09-27T14:26:18.533Z",
"duration": 0,
"status": "unknown",
"messages": [
{
"timestamp": "2024-09-27T14:26:18.533Z",
"log_level": "critical",
"logger": "string",
"event": "string",
"attributes": {}
}
],
"expires": "2024-09-27T14:26:18.533Z",
"expiring": true
}
]
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
Task not found
Loading...