ssf_streams_retrieve
GET/api/v3//ssf/streams/:uuid/
SSFStream Viewset
Request
Path Parameters
uuid uuidrequired
A UUID string identifying this SSF Stream.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (auto)
Schema
pkuuidrequired
providerintegerrequired
provider_obj object
delivery_methodDeliveryMethodEnum (string)required
Possible values: [https://schemas.openid.net/secevent/risc/delivery-method/push
, https://schemas.openid.net/secevent/risc/delivery-method/poll
]
endpoint_urlstringnullable
events_requestedEventsRequestedEnum (string)[]
Possible values: [https://schemas.openid.net/secevent/caep/event-type/session-revoked
, https://schemas.openid.net/secevent/caep/event-type/credential-change
, https://schemas.openid.net/secevent/ssf/event-type/verification
]
formatstringrequired
audstring[]
issstringrequired
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"provider": 0,
"provider_obj": {
"pk": 0,
"name": "string",
"component": "string",
"verbose_name": "string",
"verbose_name_plural": "string",
"meta_model_name": "string",
"signing_key": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"token_obj": {
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"managed": "string",
"identifier": "string",
"intent": "verification",
"user": 0,
"user_obj": {
"pk": 0,
"username": "string",
"name": "string",
"is_active": true,
"last_login": "2024-07-29T15:51:28.071Z",
"is_superuser": true,
"groups": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"groups_obj": [
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"num_pk": 0,
"name": "string",
"is_superuser": true,
"parent": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"parent_name": "string",
"attributes": {}
}
],
"email": "user@example.com",
"avatar": "string",
"attributes": {},
"uid": "string",
"path": "string",
"type": "internal",
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"password_change_date": "2024-07-29T15:51:28.071Z"
},
"description": "string",
"expires": "2024-07-29T15:51:28.071Z",
"expiring": true
},
"oidc_auth_providers": [
0
],
"ssf_url": "string",
"event_retention": "string"
},
"delivery_method": "https://schemas.openid.net/secevent/risc/delivery-method/push",
"endpoint_url": "string",
"events_requested": [
"https://schemas.openid.net/secevent/caep/event-type/session-revoked"
],
"format": "string",
"aud": [
"string"
],
"iss": "string"
}
- application/json
- Schema
- Example (auto)
Schema
non_field_errorsstring[]
codestring
property name*any
Validation Error
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (auto)
Schema
detailstringrequired
codestring
{
"detail": "string",
"code": "string"
}
Authorization: http
name: authentiktype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/ssf/streams/:uuid/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());