Authentication
Refresh session
Spend a refresh token and generate a new access token.
POST
/
v1
/
session
/
refresh
Refresh session
curl --request POST \
--url https://{appId}.session.prelude.dev/v1/session/refresh \
--header 'Content-Type: application/json' \
--cookie __Host-refresh_%7Bapp_id%7D= \
--data '
{
"step_up_token": "<string>"
}
'import requests
url = "https://{appId}.session.prelude.dev/v1/session/refresh"
payload = { "step_up_token": "<string>" }
headers = {
"cookie": "__Host-refresh_%7Bapp_id%7D=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: '__Host-refresh_%7Bapp_id%7D=', 'Content-Type': 'application/json'},
body: JSON.stringify({step_up_token: '<string>'})
};
fetch('https://{appId}.session.prelude.dev/v1/session/refresh', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{appId}.session.prelude.dev/v1/session/refresh",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'step_up_token' => '<string>'
]),
CURLOPT_COOKIE => "__Host-refresh_%7Bapp_id%7D=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{appId}.session.prelude.dev/v1/session/refresh"
payload := strings.NewReader("{\n \"step_up_token\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "__Host-refresh_%7Bapp_id%7D=")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{appId}.session.prelude.dev/v1/session/refresh")
.header("cookie", "__Host-refresh_%7Bapp_id%7D=")
.header("Content-Type", "application/json")
.body("{\n \"step_up_token\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{appId}.session.prelude.dev/v1/session/refresh")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = '__Host-refresh_%7Bapp_id%7D='
request["Content-Type"] = 'application/json'
request.body = "{\n \"step_up_token\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"access_token": "<string>",
"expires_at": 123
}{
"code": "bad_request",
"type": "bad_request"
}{
"code": "unauthorized",
"type": "unauthorized"
}{
"code": "internal",
"type": "internal"
}Authorizations
Body
application/json
Optional step-up token to include additional scopes in the access token.
Example:
"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9..."
⌘I
Refresh session
curl --request POST \
--url https://{appId}.session.prelude.dev/v1/session/refresh \
--header 'Content-Type: application/json' \
--cookie __Host-refresh_%7Bapp_id%7D= \
--data '
{
"step_up_token": "<string>"
}
'import requests
url = "https://{appId}.session.prelude.dev/v1/session/refresh"
payload = { "step_up_token": "<string>" }
headers = {
"cookie": "__Host-refresh_%7Bapp_id%7D=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: '__Host-refresh_%7Bapp_id%7D=', 'Content-Type': 'application/json'},
body: JSON.stringify({step_up_token: '<string>'})
};
fetch('https://{appId}.session.prelude.dev/v1/session/refresh', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{appId}.session.prelude.dev/v1/session/refresh",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'step_up_token' => '<string>'
]),
CURLOPT_COOKIE => "__Host-refresh_%7Bapp_id%7D=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{appId}.session.prelude.dev/v1/session/refresh"
payload := strings.NewReader("{\n \"step_up_token\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "__Host-refresh_%7Bapp_id%7D=")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{appId}.session.prelude.dev/v1/session/refresh")
.header("cookie", "__Host-refresh_%7Bapp_id%7D=")
.header("Content-Type", "application/json")
.body("{\n \"step_up_token\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{appId}.session.prelude.dev/v1/session/refresh")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = '__Host-refresh_%7Bapp_id%7D='
request["Content-Type"] = 'application/json'
request.body = "{\n \"step_up_token\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"access_token": "<string>",
"expires_at": 123
}{
"code": "bad_request",
"type": "bad_request"
}{
"code": "unauthorized",
"type": "unauthorized"
}{
"code": "internal",
"type": "internal"
}