Flow session status
curl --request GET \
--url https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}import Foundation
let url = URL(string: "https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))const options = {method: 'GET'};
fetch('https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}"
response = requests.get(url)
print(response.text){
"session_id": "flw_9F8e7D6c5B4a",
"status": "awaiting_password",
"current_step": "password",
"expires_at": "2026-09-22T14:40:00Z"
}{
"error": "not_found",
"error_description": "Client not found"
}Flow session status
Poll multi-step flow state.
GET
/
oauth
/
flow
/
status
/
{sessionId}
Flow session status
curl --request GET \
--url https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}import Foundation
let url = URL(string: "https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))const options = {method: 'GET'};
fetch('https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://prod-auth.tktchurch.com/oauth/flow/status/{sessionId}"
response = requests.get(url)
print(response.text){
"session_id": "flw_9F8e7D6c5B4a",
"status": "awaiting_password",
"current_step": "password",
"expires_at": "2026-09-22T14:40:00Z"
}{
"error": "not_found",
"error_description": "Client not found"
}