providers_scim_sync_status_retrieve
GET/api/v3//providers/scim/:id/sync/status/
Get provider's sync status
Request
Path Parameters
id integerrequired
A unique integer value identifying this SCIM Provider.
Responses
- 200
- 400
- 403
- 404
- application/json
- Schema
- Example (from schema)
Schema
is_running booleanrequired
tasks
object[]
required
{
"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.632Z",
"finish_timestamp": "2024-09-27T14:26:18.632Z",
"duration": 0,
"status": "unknown",
"messages": [
{
"timestamp": "2024-09-27T14:26:18.632Z",
"log_level": "critical",
"logger": "string",
"event": "string",
"attributes": {}
}
],
"expires": "2024-09-27T14:26:18.632Z",
"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
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/api/v3/providers/scim/:id/sync/status/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'