tenants_tenants_create_recovery_key_create
POST/api/v3//tenants/tenants/:tenant_uuid/create_recovery_key/
Create recovery key for user.
Request
Path Parameters
tenant_uuid uuidrequired
A UUID string identifying this Tenant.
- application/json
Bodyrequired
userstringrequired
Possible values: non-empty
duration_daysintegerrequired
Responses
- 200
- 400
- 403
- 404
- application/json
- Schema
- Example (auto)
Schema
expirydate-timerequired
urlstringrequired
{
"expiry": "2024-07-29T15:51:28.071Z",
"url": "string"
}
Bad request
- application/json
- Schema
- Example (auto)
Schema
detailstringrequired
codestring
{
"detail": "string",
"code": "string"
}
User not found
- 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.Post, "/api/v3/tenants/tenants/:tenant_uuid/create_recovery_key/");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"user\": \"string\",\n \"duration_days\": 0\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());